diff --git a/app.py b/app.py index 9b7bd0d620b7bcaaefa3049b32fea4f6decc48ae..96c61d581651ca4ec7787676ba4859f65e687df2 100644 --- a/app.py +++ b/app.py @@ -21,12 +21,9 @@ prefix = 'cobbled-pad-' collection = { 'stroke': { 'ascii': ' | ' , 'fonts': [] }, - 'script': { 'ascii': ' _/' , 'fonts': [] }, 'block': { 'ascii': '|_|' , 'fonts': [] }, - 'outline': { 'ascii': '/ /' , 'fonts': [] }, - 'effect': { 'ascii': ': :' , 'fonts': [] }, + 'open': { 'ascii': '/ /' , 'fonts': [] }, 'pattern': { 'ascii': '(((' , 'fonts': [] }, - 'fill': { 'ascii': '###' , 'fonts': [] }, '3d': { 'ascii': '_|/' , 'fonts': [] }, @@ -85,7 +82,7 @@ def text2figlet(text, figfont): return answer -def ascii2svg(ascii, weight='3', scale='1'): +def ascii2svg(ascii, weight='2', scale='1'): if ascii: print('--- SVGBOB SUBPROCESS') svgbob = subprocess.run([ @@ -98,6 +95,12 @@ def ascii2svg(ascii, weight='3', scale='1'): else: return "ERROR: etherpad request failed" +def styleSVG(svg): + with open('static/css/svg.css', 'r') as svg_css: + css = svg_css.read() + svg = svg.replace('<style>', '<style>' + css) + return svg + def simplifySVG(svg): # store as a temporary file @@ -191,8 +194,8 @@ def parse_collection(): collection[type]['fonts'].append(f) # make thumbnail - thumbnail_ascii = text2figlet("A", figfont)[1] - thumbnail_svg = ascii2svg(thumbnail_ascii, '2', '0.66') + thumbnail_ascii = text2figlet("Abc", figfont)[1] + thumbnail_svg = styleSVG(ascii2svg(thumbnail_ascii, '2', '0.66')) thumbnail_path = os.path.join(root, basename) + '.svg' thumbnail_file = open(thumbnail_path, "w") thumbnail_file.write(thumbnail_svg) @@ -219,6 +222,13 @@ def index(): 'index.html', title = title) +@app.route("/gallery.html") +def gallery(): + + return render_template( + 'gallery.html', + title = title) + # _ # __| |_ __ __ ___ __ # / _` | '__/ _` \ \ /\ / / @@ -234,7 +244,7 @@ def draw(): params = { 'pad': request.args.get('p') or 'index', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } params['pad-full'] = etherpad + prefix + params['pad'] @@ -250,7 +260,7 @@ def drawing(id): params = { 'pad': id or 'default', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } params['pad-full'] = etherpad + prefix + params['pad'] @@ -282,7 +292,7 @@ def font(): params = { 'text': request.args.get('t') or 'the quick brown fox jumps over the lazy dog', 'pad': request.args.get('p') or 'font_index', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } params['pad-full'] = etherpad + prefix + params['pad'] @@ -297,7 +307,7 @@ def writing(id): params = { 'text': request.args.get('t') or 'the quick brown fox jumps over the lazy dog', 'pad': id or 'ascriipt', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } if '.flf' in params['pad']: @@ -351,7 +361,7 @@ def catalogue(): # text and weight as get parameter params = { 'text': request.args.get('t') or 'the quick brown fox jumps over the lazy dog', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } return render_template( @@ -366,7 +376,7 @@ def specimen(type): params = { 'text': request.args.get('t') or 'Plotter Station', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } total = '' @@ -407,7 +417,7 @@ def resizeSVG (m): # def svg (id): # params = { # 'pad': id or 'default', -# 'weight': request.args.get('w') or '3', +# 'weight': request.args.get('w') or '2', # } # params['pad-full'] = etherpad + prefix + params['pad'] @@ -421,7 +431,7 @@ def resizeSVG (m): def hpgl (id): params = { 'pad': id or 'default', - 'weight': request.args.get('w') or '3', + 'weight': request.args.get('w') or '2', } params['pad-full'] = etherpad + prefix + params['pad'] diff --git a/templates/deprecated_catalogue.html b/deprecated/deprecated_catalogue.html similarity index 100% rename from templates/deprecated_catalogue.html rename to deprecated/deprecated_catalogue.html diff --git a/static/css/basics.css b/static/css/basics.css index 775aeedca53d577ce8db3ba27b7370d3b4990a16..efb44ccf9a6b87ff54f61693e09bfadada6dcc48 100644 --- a/static/css/basics.css +++ b/static/css/basics.css @@ -78,21 +78,6 @@ label, input{ } - -.svgbob text { - font-family: monospace !important; - font-weight: bold !important; - fill: red !important; -} -.svgbob text{ - visibility: hidden; -} -body.check-text .svgbob text{ - visibility: visible; -} -svg{ - overflow: visible; -} /* autofix colors */ .fix-label{ border-bottom: solid limegreen 3px; @@ -106,3 +91,8 @@ span.fix{ font-weight: bold; } + +svg{ + overflow: visible; +} + diff --git a/static/css/interface.css b/static/css/interface.css index 2972f28861f08aa69092058c84528a5e3363db66..93c632bf58c2622dbfee3d90cb28b2405abbb356 100644 --- a/static/css/interface.css +++ b/static/css/interface.css @@ -20,6 +20,19 @@ body{ background-color: var(--c-back); } +button{ + background-color: var(--c-link); + border: none; + border-radius: 5em; + padding: 0.5em 1em; + color: white; +} + +img{ + display: block; + max-width: 100%; +} + /* BAR ================================================= */ @@ -153,14 +166,8 @@ aside.left{ right: calc(50vw + 1.5rem); } -.font aside button{ - background-color: var(--c-back); - border: 1px solid black; - cursor: pointer; -} - .font h2{ - font-size: 0.75rem; + font-size: 0.875rem; grid-column: 1 / -1; font-weight: normal; } @@ -243,6 +250,35 @@ aside.left{ max-width: 48rem; } +/* gallery + ================================================= */ + +.gallery{ + padding: 2rem 2rem 4rem; + margin: 2rem 0; + grid-column: span 2; + display: grid; + grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); + gap: 1rem; +} +.gallery h3{ + font-size: 0.875rem; + font-weight: bold; + grid-column: 1 / -1; +} +.gallery h2{ + display: block; + + font-size: 0.875rem; + font-weight: bold; + grid-column: 1 / -1; + + width: fit-content; + padding: 1rem; + margin: 1rem auto; + border: 1px solid black; +} + /* font ================================================= */ @@ -307,16 +343,14 @@ summary + div{ top: 0; } .collection{ - position: absolute; - left: calc(100% + 1px); top: calc(-1 * var(--bar-h) * calc(var(--index) - 1) + 1px); - max-height: calc(100vh - 1px - calc(var(--bar-h) * 2)); + max-height: calc(100vh - 1px - var(--bar-h)); overflow: auto; - width: 75vw; - display: flex; - flex-wrap: wrap; + width: calc(100vw - 24rem); + display: grid; + grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr)); gap: 1px; padding-bottom: var(--bar-h); @@ -330,7 +364,7 @@ summary + div{ box-sizing: border-box; display: flex; - justify-content: flex-start; + justify-content: space-between; align-items: center; gap: 0.25rem; position: relative; @@ -353,7 +387,7 @@ summary + div{ background-color: var(--c); display: inline-block; position: absolute; - top: 0.25rem; + top: 0.5rem; right: 0.5rem; } .thumbnail{ diff --git a/static/css/svg.css b/static/css/svg.css new file mode 100644 index 0000000000000000000000000000000000000000..f0377077d16fa4b8df118db3690bbef46036fd35 --- /dev/null +++ b/static/css/svg.css @@ -0,0 +1,18 @@ +.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +} \ No newline at end of file diff --git a/static/db/contributed/3d/isometric1.svg b/static/db/contributed/3d/isometric1.svg index 6e3d084caabf283067fbc458b3cc9f3c8cdfa5f4..061ccb63f6dec2a90b5d07b15e8f022e6ae9f754 100644 --- a/static/db/contributed/3d/isometric1.svg +++ b/static/db/contributed/3d/isometric1.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="227.04001" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="227.04001" height="126.72"></rect> <text x="27.720001" y="29.04" >::</text> <text x="38.280003" y="39.600002" >:</text> <text x="17.16" y="50.160004" >:</text> @@ -105,6 +122,26 @@ <text x="33" y="71.28001" >:</text> <text x="43.56" y="81.840004" >:</text> <text x="33" y="102.96001" >:</text> + <text x="101.64001" y="29.04" >::</text> + <text x="112.200005" y="39.600002" >:</text> + <text x="91.08" y="50.160004" >:</text> + <text x="117.48" y="50.160004" >:</text> + <text x="101.64001" y="60.72" >:</text> + <text x="106.920006" y="71.28001" >:</text> + <text x="91.08" y="81.840004" >:</text> + <text x="117.48" y="81.840004" >:</text> + <text x="96.36" y="92.4" >:</text> + <text x="101.64001" y="102.96001" >::</text> + <line x1="100.32001" y1="110.880005" x2="110.880005" y2="110.880005" class="broken"></line> + <text x="175.56001" y="29.04" >::</text> + <text x="170.28001" y="39.600002" >:</text> + <text x="186.12001" y="39.600002" >:</text> + <text x="165" y="50.160004" >:</text> + <text x="191.40001" y="50.160004" >:</text> + <text x="196.68001" y="60.72" >:</text> + <text x="165" y="81.840004" >:</text> + <text x="170.28001" y="92.4" >:</text> + <text x="175.56001" y="102.96001" >:</text> <g> <line x1="31.68" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="29.04" y2="15.84" class="solid"></line> @@ -154,4 +191,102 @@ <line x1="36.960003" y1="84.48" x2="34.32" y2="89.76" class="solid"></line> <line x1="34.32" y1="89.76" x2="34.32" y2="95.04" class="solid"></line> </g> + <g> + <line x1="105.600006" y1="10.56" x2="121.44" y2="10.56" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="102.96001" y2="15.84" class="solid"></line> + <line x1="102.96001" y1="15.84" x2="102.96001" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="108.240005" y1="15.84" x2="108.240005" y2="21.12" class="solid"></line> + <line x1="121.44" y1="10.56" x2="142.56001" y2="52.800003" class="solid"></line> + <line x1="113.520004" y1="26.400002" x2="113.520004" y2="31.68" class="solid"></line> + <line x1="118.8" y1="36.960003" x2="118.8" y2="42.24" class="solid"></line> + <line x1="124.08" y1="47.52" x2="124.08" y2="73.920006" class="broken"></line> + <line x1="126.72" y1="52.800003" x2="142.56001" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="21.12" x2="97.68" y2="26.400002" class="solid"></line> + <line x1="97.68" y1="26.400002" x2="97.68" y2="52.800003" class="broken"></line> + </g> + <g> + <line x1="95.04" y1="31.68" x2="92.4" y2="36.960003" class="solid"></line> + <line x1="92.4" y1="36.960003" x2="92.4" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="31.68" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="121.44" y2="63.36" class="solid"></line> + <line x1="100.32001" y1="42.24" x2="116.16" y2="73.920006" class="solid"></line> + <line x1="102.96001" y1="47.52" x2="113.520004" y2="47.52" class="broken"></line> + <line x1="102.96001" y1="47.52" x2="102.96001" y2="52.800003" class="solid"></line> + <line x1="108.240005" y1="58.08" x2="108.240005" y2="63.36" class="solid"></line> + <line x1="113.520004" y1="68.64" x2="113.520004" y2="95.04" class="broken"></line> + <line x1="121.44" y1="63.36" x2="118.8" y2="68.64" class="solid"></line> + <line x1="118.8" y1="68.64" x2="118.8" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="89.76" y1="42.24" x2="87.12" y2="47.52" class="solid"></line> + <line x1="87.12" y1="47.52" x2="87.12" y2="73.920006" class="broken"></line> + </g> + <g> + <line x1="84.48" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="100.32001" y2="105.600006" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="52.800003" x2="89.76" y2="63.36" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="110.880005" y2="84.48" class="solid"></line> + <line x1="89.76" y1="63.36" x2="105.600006" y2="95.04" class="solid"></line> + <line x1="92.4" y1="68.64" x2="102.96001" y2="68.64" class="broken"></line> + <line x1="92.4" y1="68.64" x2="92.4" y2="73.920006" class="solid"></line> + <line x1="97.68" y1="79.200005" x2="97.68" y2="84.48" class="solid"></line> + <line x1="102.96001" y1="89.76" x2="102.96001" y2="95.04" class="solid"></line> + <line x1="110.880005" y1="84.48" x2="108.240005" y2="89.76" class="solid"></line> + <line x1="108.240005" y1="89.76" x2="108.240005" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="129.36" y1="63.36" x2="145.20001" y2="63.36" class="solid"></line> + <line x1="132" y1="63.36" x2="110.880005" y2="105.600006" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="126.72" y2="105.600006" class="solid"></line> + <line x1="110.880005" y1="105.600006" x2="126.72" y2="105.600006" class="solid"></line> + </g> + <g> + <line x1="179.52" y1="10.56" x2="195.36" y2="10.56" class="solid"></line> + <line x1="179.52" y1="10.56" x2="176.88" y2="15.84" class="solid"></line> + <line x1="176.88" y1="15.84" x2="176.88" y2="21.12" class="solid"></line> + <line x1="179.52" y1="10.56" x2="205.92001" y2="63.36" class="solid"></line> + <line x1="182.16" y1="15.84" x2="182.16" y2="21.12" class="solid"></line> + <line x1="195.36" y1="10.56" x2="221.76001" y2="63.36" class="solid"></line> + <line x1="187.44" y1="26.400002" x2="187.44" y2="31.68" class="solid"></line> + <line x1="192.72" y1="36.960003" x2="192.72" y2="42.24" class="solid"></line> + <line x1="198.00002" y1="47.52" x2="198.00002" y2="52.800003" class="solid"></line> + <line x1="205.92001" y1="63.36" x2="221.76001" y2="63.36" class="solid"></line> + <line x1="179.52" y1="31.68" x2="163.68001" y2="63.36" class="solid"></line> + <line x1="179.52" y1="31.68" x2="200.64001" y2="73.920006" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="179.52" y2="63.36" class="solid"></line> + <line x1="184.8" y1="52.800003" x2="179.52" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="184.8" y2="105.600006" class="solid"></line> + <line x1="166.32" y1="68.64" x2="166.32" y2="73.920006" class="solid"></line> + <line x1="179.52" y1="63.36" x2="200.64001" y2="105.600006" class="solid"></line> + <line x1="205.92001" y1="63.36" x2="200.64001" y2="73.920006" class="solid"></line> + <line x1="200.64001" y1="73.920006" x2="216.48001" y2="73.920006" class="solid"></line> + <line x1="221.76001" y1="63.36" x2="216.48001" y2="73.920006" class="solid"></line> + <line x1="171.6" y1="79.200005" x2="171.6" y2="84.48" class="solid"></line> + <line x1="176.88" y1="89.76" x2="176.88" y2="95.04" class="solid"></line> + <line x1="184.8" y1="105.600006" x2="200.64001" y2="105.600006" class="solid"></line> + <line x1="158.40001" y1="52.800003" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="179.52" y2="116.16" class="solid"></line> + <line x1="184.8" y1="105.600006" x2="179.52" y2="116.16" class="solid"></line> + <line x1="179.52" y1="116.16" x2="195.36" y2="116.16" class="solid"></line> + <line x1="200.64001" y1="105.600006" x2="195.36" y2="116.16" class="solid"></line> + </g> + <g> + <line x1="174.24" y1="21.12" x2="171.6" y2="26.400002" class="solid"></line> + <line x1="171.6" y1="26.400002" x2="171.6" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="168.96" y1="31.68" x2="166.32" y2="36.960003" class="solid"></line> + <line x1="166.32" y1="36.960003" x2="166.32" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="163.68001" y1="42.24" x2="161.04001" y2="47.52" class="solid"></line> + <line x1="161.04001" y1="47.52" x2="161.04001" y2="73.920006" class="broken"></line> + </g> </svg> diff --git a/static/db/contributed/3d/isometric2.svg b/static/db/contributed/3d/isometric2.svg index 34a105ed8d68943939756b6a9e113a753a199442..4b8c51f7db866dd26ed9a384620819ba22be999d 100644 --- a/static/db/contributed/3d/isometric2.svg +++ b/static/db/contributed/3d/isometric2.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="227.04001" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="227.04001" height="126.72"></rect> <text x="27.720001" y="29.04" >::</text> <text x="22.44" y="39.600002" >:</text> <text x="17.16" y="50.160004" >:</text> @@ -105,6 +122,25 @@ <text x="27.720001" y="71.28001" >:</text> <text x="17.16" y="81.840004" >:</text> <text x="27.720001" y="102.96001" >:</text> + <text x="175.56001" y="29.04" >:</text> + <text x="170.28001" y="39.600002" >:</text> + <text x="165" y="50.160004" >:</text> + <text x="196.68001" y="71.28001" >:</text> + <text x="165" y="81.840004" >:</text> + <text x="191.40001" y="81.840004" >:</text> + <text x="170.28001" y="92.4" >:</text> + <text x="186.12001" y="92.4" >:</text> + <text x="175.56001" y="102.96001" >::</text> + <text x="101.64001" y="29.04" >::</text> + <text x="96.36" y="39.600002" >:</text> + <text x="91.08" y="50.160004" >:</text> + <text x="117.48" y="50.160004" >:</text> + <text x="106.920006" y="60.72" >:</text> + <text x="101.64001" y="71.28001" >:</text> + <text x="91.08" y="81.840004" >:</text> + <text x="117.48" y="81.840004" >:</text> + <text x="112.200005" y="92.4" >:</text> + <text x="101.64001" y="102.96001" >::</text> <g> <line x1="31.68" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="29.04" y2="15.84" class="solid"></line> @@ -160,4 +196,114 @@ <line x1="31.68" y1="52.800003" x2="29.04" y2="58.08" class="solid"></line> <line x1="29.04" y1="58.08" x2="29.04" y2="63.36" class="solid"></line> </g> + <g> + <line x1="179.52" y1="10.56" x2="195.36" y2="10.56" class="solid"></line> + <line x1="179.52" y1="10.56" x2="176.88" y2="15.84" class="solid"></line> + <line x1="176.88" y1="15.84" x2="176.88" y2="21.12" class="solid"></line> + <line x1="179.52" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="184.8" y1="21.12" x2="200.64001" y2="21.12" class="solid"></line> + <line x1="195.36" y1="10.56" x2="200.64001" y2="21.12" class="solid"></line> + <line x1="184.8" y1="21.12" x2="163.68001" y2="63.36" class="solid"></line> + <line x1="200.64001" y1="21.12" x2="179.52" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="179.52" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="179.52" y2="95.04" class="solid"></line> + <line x1="166.32" y1="68.64" x2="166.32" y2="73.920006" class="solid"></line> + <line x1="179.52" y1="63.36" x2="184.8" y2="73.920006" class="solid"></line> + <line x1="171.6" y1="79.200005" x2="171.6" y2="84.48" class="solid"></line> + <line x1="176.88" y1="89.76" x2="176.88" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="174.24" y1="21.12" x2="171.6" y2="26.400002" class="solid"></line> + <line x1="171.6" y1="26.400002" x2="171.6" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="168.96" y1="31.68" x2="166.32" y2="36.960003" class="solid"></line> + <line x1="166.32" y1="36.960003" x2="166.32" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="163.68001" y1="42.24" x2="161.04001" y2="47.52" class="solid"></line> + <line x1="161.04001" y1="47.52" x2="161.04001" y2="73.920006" class="broken"></line> + </g> + <g> + <line x1="200.64001" y1="52.800003" x2="216.48001" y2="52.800003" class="solid"></line> + <line x1="200.64001" y1="52.800003" x2="198.00002" y2="58.08" class="solid"></line> + <line x1="198.00002" y1="58.08" x2="198.00002" y2="63.36" class="solid"></line> + <line x1="200.64001" y1="52.800003" x2="205.92001" y2="63.36" class="solid"></line> + <line x1="205.92001" y1="63.36" x2="221.76001" y2="63.36" class="solid"></line> + <line x1="216.48001" y1="52.800003" x2="221.76001" y2="63.36" class="solid"></line> + <line x1="221.76001" y1="63.36" x2="195.36" y2="116.16" class="solid"></line> + <line x1="158.40001" y1="52.800003" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="179.52" y2="116.16" class="solid"></line> + <line x1="205.92001" y1="63.36" x2="179.52" y2="116.16" class="solid"></line> + <line x1="179.52" y1="116.16" x2="195.36" y2="116.16" class="solid"></line> + </g> + <g> + <line x1="195.36" y1="63.36" x2="192.72" y2="68.64" class="solid"></line> + <line x1="192.72" y1="68.64" x2="192.72" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="190.08" y1="73.920006" x2="187.44" y2="79.200005" class="solid"></line> + <line x1="187.44" y1="79.200005" x2="187.44" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="184.8" y1="84.48" x2="182.16" y2="89.76" class="solid"></line> + <line x1="182.16" y1="89.76" x2="182.16" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="21.12" x2="126.72" y2="21.12" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="97.68" y2="26.400002" class="solid"></line> + <line x1="97.68" y1="26.400002" x2="97.68" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="21.12" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="113.520004" y1="26.400002" x2="113.520004" y2="52.800003" class="broken"></line> + <line x1="126.72" y1="21.12" x2="142.56001" y2="52.800003" class="solid"></line> + <line x1="118.8" y1="36.960003" x2="118.8" y2="42.24" class="solid"></line> + <line x1="124.08" y1="47.52" x2="124.08" y2="73.920006" class="broken"></line> + <line x1="126.72" y1="52.800003" x2="142.56001" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="31.68" x2="92.4" y2="36.960003" class="solid"></line> + <line x1="92.4" y1="36.960003" x2="92.4" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="31.68" x2="89.76" y2="63.36" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="108.240005" y2="47.52" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="108.240005" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <line x1="89.76" y1="63.36" x2="95.04" y2="73.920006" class="solid"></line> + <line x1="92.4" y1="68.64" x2="92.4" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="97.68" y2="68.64" class="solid"></line> + <line x1="97.68" y1="68.64" x2="97.68" y2="95.04" class="broken"></line> + </g> + <g> + <line x1="89.76" y1="42.24" x2="87.12" y2="47.52" class="solid"></line> + <line x1="87.12" y1="47.52" x2="87.12" y2="73.920006" class="broken"></line> + </g> + <g> + <line x1="84.48" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="105.600006" y2="116.16" class="solid"></line> + <line x1="129.36" y1="63.36" x2="145.20001" y2="63.36" class="solid"></line> + <line x1="132" y1="63.36" x2="105.600006" y2="116.16" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="121.44" y2="116.16" class="solid"></line> + <line x1="105.600006" y1="116.16" x2="121.44" y2="116.16" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="52.800003" x2="102.96001" y2="58.08" class="solid"></line> + <line x1="102.96001" y1="58.08" x2="102.96001" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="52.800003" x2="100.32001" y2="84.48" class="solid"></line> + <line x1="116.16" y1="52.800003" x2="121.44" y2="63.36" class="solid"></line> + <line x1="121.44" y1="63.36" x2="118.8" y2="68.64" class="solid"></line> + <line x1="118.8" y1="68.64" x2="118.8" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="84.48" x2="110.880005" y2="84.48" class="solid"></line> + <line x1="100.32001" y1="84.48" x2="105.600006" y2="95.04" class="solid"></line> + <line x1="102.96001" y1="89.76" x2="102.96001" y2="95.04" class="solid"></line> + <line x1="110.880005" y1="84.48" x2="108.240005" y2="89.76" class="solid"></line> + <line x1="108.240005" y1="89.76" x2="108.240005" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="73.920006" x2="113.520004" y2="79.200005" class="solid"></line> + <line x1="113.520004" y1="79.200005" x2="113.520004" y2="84.48" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/3d/isometric3.svg b/static/db/contributed/3d/isometric3.svg index 18d8e9f8cd5a925855c48a6b4ab02427c8cd9e83..795e6c598586535d90e439bf44d847d7b2fbc75d 100644 --- a/static/db/contributed/3d/isometric3.svg +++ b/static/db/contributed/3d/isometric3.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="227.04001" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="227.04001" height="126.72"></rect> <text x="43.56" y="29.04" >::</text> <text x="38.280003" y="39.600002" >:</text> <text x="33" y="50.160004" >:</text> @@ -105,6 +122,26 @@ <text x="43.56" y="71.28001" >:</text> <text x="33" y="81.840004" >:</text> <text x="43.56" y="102.96001" >:</text> + <text x="191.40001" y="29.04" >:</text> + <text x="186.12001" y="39.600002" >:</text> + <text x="180.84001" y="50.160004" >:</text> + <text x="212.52" y="71.28001" >:</text> + <text x="180.84001" y="81.840004" >:</text> + <text x="207.24" y="81.840004" >:</text> + <text x="186.12001" y="92.4" >:</text> + <text x="201.96" y="92.4" >:</text> + <text x="191.40001" y="102.96001" >::</text> + <text x="117.48" y="29.04" >::</text> + <text x="112.200005" y="39.600002" >:</text> + <text x="106.920006" y="50.160004" >:</text> + <text x="133.32" y="50.160004" >:</text> + <text x="122.76" y="60.72" >:</text> + <text x="143.88" y="60.72" >|</text> + <text x="117.48" y="71.28001" >:</text> + <text x="106.920006" y="81.840004" >:</text> + <text x="133.32" y="81.840004" >:</text> + <text x="128.04001" y="92.4" >:</text> + <text x="117.48" y="102.96001" >::</text> <g> <line x1="31.68" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="5.28" y2="63.36" class="solid"></line> @@ -157,4 +194,109 @@ <line x1="42.24" y1="63.36" x2="39.600002" y2="68.64" class="solid"></line> <line x1="39.600002" y1="68.64" x2="39.600002" y2="95.04" class="broken"></line> </g> + <g> + <line x1="179.52" y1="10.56" x2="195.36" y2="10.56" class="solid"></line> + <line x1="179.52" y1="10.56" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="195.36" y1="10.56" x2="192.72" y2="15.84" class="solid"></line> + <line x1="192.72" y1="15.84" x2="192.72" y2="21.12" class="solid"></line> + <line x1="195.36" y1="10.56" x2="200.64001" y2="21.12" class="solid"></line> + <line x1="200.64001" y1="21.12" x2="179.52" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="168.96" y2="63.36" class="solid"></line> + <line x1="174.24" y1="52.800003" x2="168.96" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="179.52" y2="116.16" class="solid"></line> + <line x1="168.96" y1="63.36" x2="195.36" y2="116.16" class="solid"></line> + <line x1="179.52" y1="63.36" x2="195.36" y2="95.04" class="solid"></line> + <line x1="182.16" y1="68.64" x2="182.16" y2="73.920006" class="solid"></line> + <line x1="187.44" y1="79.200005" x2="187.44" y2="84.48" class="solid"></line> + <line x1="192.72" y1="89.76" x2="192.72" y2="95.04" class="solid"></line> + <line x1="200.64001" y1="52.800003" x2="216.48001" y2="52.800003" class="solid"></line> + <line x1="200.64001" y1="52.800003" x2="190.08" y2="73.920006" class="solid"></line> + <line x1="216.48001" y1="52.800003" x2="213.84001" y2="58.08" class="solid"></line> + <line x1="213.84001" y1="58.08" x2="213.84001" y2="63.36" class="solid"></line> + <line x1="216.48001" y1="52.800003" x2="221.76001" y2="63.36" class="solid"></line> + <line x1="221.76001" y1="63.36" x2="195.36" y2="116.16" class="solid"></line> + <line x1="179.52" y1="116.16" x2="195.36" y2="116.16" class="solid"></line> + </g> + <g> + <line x1="190.08" y1="21.12" x2="187.44" y2="26.400002" class="solid"></line> + <line x1="187.44" y1="26.400002" x2="187.44" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="184.8" y1="31.68" x2="182.16" y2="36.960003" class="solid"></line> + <line x1="182.16" y1="36.960003" x2="182.16" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="179.52" y1="42.24" x2="176.88" y2="47.52" class="solid"></line> + <line x1="176.88" y1="47.52" x2="176.88" y2="73.920006" class="broken"></line> + </g> + <g> + <line x1="211.20001" y1="63.36" x2="208.56001" y2="68.64" class="solid"></line> + <line x1="208.56001" y1="68.64" x2="208.56001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="205.92001" y1="73.920006" x2="203.28001" y2="79.200005" class="solid"></line> + <line x1="203.28001" y1="79.200005" x2="203.28001" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="200.64001" y1="84.48" x2="198.00002" y2="89.76" class="solid"></line> + <line x1="198.00002" y1="89.76" x2="198.00002" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="21.12" x2="126.72" y2="21.12" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="116.16" y1="21.12" x2="113.520004" y2="26.400002" class="solid"></line> + <line x1="113.520004" y1="26.400002" x2="113.520004" y2="31.68" class="solid"></line> + <line x1="126.72" y1="21.12" x2="142.56001" y2="52.800003" class="solid"></line> + <line x1="129.36" y1="26.400002" x2="129.36" y2="52.800003" class="broken"></line> + <line x1="134.64" y1="36.960003" x2="134.64" y2="42.24" class="solid"></line> + <line x1="139.92" y1="47.52" x2="139.92" y2="73.920006" class="broken"></line> + <line x1="79.200005" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> + <line x1="100.32001" y1="52.800003" x2="95.04" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="105.600006" y2="116.16" class="solid"></line> + <line x1="95.04" y1="63.36" x2="121.44" y2="116.16" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="121.44" y2="116.16" class="solid"></line> + <line x1="105.600006" y1="116.16" x2="121.44" y2="116.16" class="solid"></line> + </g> + <g> + <line x1="110.880005" y1="31.68" x2="108.240005" y2="36.960003" class="solid"></line> + <line x1="108.240005" y1="36.960003" x2="108.240005" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="31.68" x2="105.600006" y2="63.36" class="solid"></line> + <line x1="121.44" y1="31.68" x2="126.72" y2="42.24" class="solid"></line> + <line x1="113.520004" y1="47.52" x2="124.08" y2="47.52" class="broken"></line> + <line x1="126.72" y1="42.24" x2="124.08" y2="47.52" class="solid"></line> + <line x1="124.08" y1="47.52" x2="124.08" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="108.240005" y1="68.64" x2="108.240005" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="42.24" x2="102.96001" y2="47.52" class="solid"></line> + <line x1="102.96001" y1="47.52" x2="102.96001" y2="73.920006" class="broken"></line> + </g> + <g> + <line x1="121.44" y1="52.800003" x2="118.8" y2="58.08" class="solid"></line> + <line x1="118.8" y1="58.08" x2="118.8" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="132" y1="52.800003" x2="116.16" y2="84.48" class="solid"></line> + <line x1="132" y1="52.800003" x2="137.28" y2="63.36" class="solid"></line> + <line x1="124.08" y1="68.64" x2="134.64" y2="68.64" class="broken"></line> + <line x1="137.28" y1="63.36" x2="134.64" y2="68.64" class="solid"></line> + <line x1="134.64" y1="68.64" x2="134.64" y2="73.920006" class="solid"></line> + <line x1="116.16" y1="84.48" x2="121.44" y2="95.04" class="solid"></line> + <line x1="118.8" y1="89.76" x2="118.8" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="63.36" x2="113.520004" y2="68.64" class="solid"></line> + <line x1="113.520004" y1="68.64" x2="113.520004" y2="95.04" class="broken"></line> + </g> + <g> + <line x1="132" y1="73.920006" x2="129.36" y2="79.200005" class="solid"></line> + <line x1="129.36" y1="79.200005" x2="129.36" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="84.48" x2="124.08" y2="89.76" class="solid"></line> + <line x1="124.08" y1="89.76" x2="124.08" y2="95.04" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/3d/isometric4.svg b/static/db/contributed/3d/isometric4.svg index 1029029cc0f3149f647afa703f254da46b62a009..5f67e49ef1319c1261b325f7298909410ed8ae97 100644 --- a/static/db/contributed/3d/isometric4.svg +++ b/static/db/contributed/3d/isometric4.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="227.04001" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="227.04001" height="126.72"></rect> <text x="43.56" y="29.04" >::</text> <text x="54.120003" y="39.600002" >:</text> <text x="33" y="50.160004" >:</text> @@ -105,6 +122,28 @@ <text x="48.84" y="71.28001" >:</text> <text x="59.4" y="81.840004" >:</text> <text x="48.84" y="102.96001" >:</text> + <text x="117.48" y="29.04" >::</text> + <text x="128.04001" y="39.600002" >:</text> + <text x="106.920006" y="50.160004" >:</text> + <text x="133.32" y="50.160004" >:</text> + <text x="117.48" y="60.72" >:</text> + <text x="143.88" y="60.72" >|</text> + <text x="122.76" y="71.28001" >:</text> + <line x1="147.84001" y1="63.36" x2="126.72" y2="105.600006" class="solid"></line> + <text x="133.32" y="81.840004" >:</text> + <text x="106.920006" y="81.840004" >:</text> + <text x="112.200005" y="92.4" >:</text> + <text x="117.48" y="102.96001" >::</text> + <line x1="116.16" y1="110.880005" x2="126.72" y2="110.880005" class="broken"></line> + <text x="191.40001" y="29.04" >::</text> + <text x="186.12001" y="39.600002" >:</text> + <text x="201.96" y="39.600002" >:</text> + <text x="180.84001" y="50.160004" >:</text> + <text x="207.24" y="50.160004" >:</text> + <text x="212.52" y="60.72" >:</text> + <text x="180.84001" y="81.840004" >:</text> + <text x="186.12001" y="92.4" >:</text> + <text x="191.40001" y="102.96001" >:</text> <g> <line x1="31.68" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="5.28" y2="63.36" class="solid"></line> @@ -157,4 +196,92 @@ <line x1="31.68" y1="42.24" x2="29.04" y2="47.52" class="solid"></line> <line x1="29.04" y1="47.52" x2="29.04" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="105.600006" y1="10.56" x2="121.44" y2="10.56" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="121.44" y1="10.56" x2="118.8" y2="15.84" class="solid"></line> + <line x1="118.8" y1="15.84" x2="118.8" y2="21.12" class="solid"></line> + <line x1="121.44" y1="10.56" x2="142.56001" y2="52.800003" class="solid"></line> + <line x1="124.08" y1="15.84" x2="124.08" y2="21.12" class="solid"></line> + <line x1="129.36" y1="26.400002" x2="129.36" y2="31.68" class="solid"></line> + <line x1="134.64" y1="36.960003" x2="134.64" y2="42.24" class="solid"></line> + <line x1="139.92" y1="47.52" x2="139.92" y2="73.920006" class="broken"></line> + <line x1="79.200005" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> + <line x1="100.32001" y1="52.800003" x2="95.04" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="100.32001" y2="105.600006" class="solid"></line> + <line x1="95.04" y1="63.36" x2="116.16" y2="105.600006" class="solid"></line> + <line x1="100.32001" y1="105.600006" x2="116.16" y2="105.600006" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="21.12" x2="113.520004" y2="26.400002" class="solid"></line> + <line x1="113.520004" y1="26.400002" x2="113.520004" y2="52.800003" class="broken"></line> + </g> + <g> + <line x1="110.880005" y1="31.68" x2="108.240005" y2="36.960003" class="solid"></line> + <line x1="108.240005" y1="36.960003" x2="108.240005" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="31.68" x2="116.16" y2="42.24" class="solid"></line> + <line x1="121.44" y1="31.68" x2="137.28" y2="63.36" class="solid"></line> + <line x1="116.16" y1="42.24" x2="132" y2="73.920006" class="solid"></line> + <line x1="118.8" y1="47.52" x2="118.8" y2="52.800003" class="solid"></line> + <line x1="124.08" y1="58.08" x2="124.08" y2="63.36" class="solid"></line> + <line x1="126.72" y1="63.36" x2="137.28" y2="63.36" class="solid"></line> + <line x1="129.36" y1="68.64" x2="129.36" y2="95.04" class="broken"></line> + <line x1="137.28" y1="63.36" x2="134.64" y2="68.64" class="solid"></line> + <line x1="134.64" y1="68.64" x2="134.64" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="42.24" x2="102.96001" y2="47.52" class="solid"></line> + <line x1="102.96001" y1="47.52" x2="102.96001" y2="73.920006" class="broken"></line> + </g> + <g> + <line x1="110.880005" y1="52.800003" x2="105.600006" y2="63.36" class="solid"></line> + <line x1="110.880005" y1="52.800003" x2="126.72" y2="84.48" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="121.44" y2="95.04" class="solid"></line> + <line x1="108.240005" y1="68.64" x2="108.240005" y2="73.920006" class="solid"></line> + <line x1="113.520004" y1="79.200005" x2="113.520004" y2="84.48" class="solid"></line> + <line x1="116.16" y1="84.48" x2="126.72" y2="84.48" class="solid"></line> + <line x1="118.8" y1="89.76" x2="118.8" y2="95.04" class="solid"></line> + <line x1="126.72" y1="84.48" x2="124.08" y2="89.76" class="solid"></line> + <line x1="124.08" y1="89.76" x2="124.08" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="179.52" y1="10.56" x2="195.36" y2="10.56" class="solid"></line> + <line x1="179.52" y1="10.56" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="195.36" y1="10.56" x2="192.72" y2="15.84" class="solid"></line> + <line x1="192.72" y1="15.84" x2="192.72" y2="21.12" class="solid"></line> + <line x1="195.36" y1="10.56" x2="221.76001" y2="63.36" class="solid"></line> + <line x1="198.00002" y1="15.84" x2="198.00002" y2="21.12" class="solid"></line> + <line x1="203.28001" y1="26.400002" x2="203.28001" y2="31.68" class="solid"></line> + <line x1="208.56001" y1="36.960003" x2="208.56001" y2="42.24" class="solid"></line> + <line x1="213.84001" y1="47.52" x2="213.84001" y2="52.800003" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="168.96" y2="63.36" class="solid"></line> + <line x1="174.24" y1="52.800003" x2="168.96" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="179.52" y2="116.16" class="solid"></line> + <line x1="168.96" y1="63.36" x2="195.36" y2="116.16" class="solid"></line> + <line x1="179.52" y1="116.16" x2="195.36" y2="116.16" class="solid"></line> + <line x1="195.36" y1="31.68" x2="179.52" y2="63.36" class="solid"></line> + <line x1="195.36" y1="31.68" x2="216.48001" y2="73.920006" class="solid"></line> + <line x1="179.52" y1="63.36" x2="200.64001" y2="105.600006" class="solid"></line> + <line x1="182.16" y1="68.64" x2="182.16" y2="73.920006" class="solid"></line> + <line x1="187.44" y1="79.200005" x2="187.44" y2="84.48" class="solid"></line> + <line x1="192.72" y1="89.76" x2="192.72" y2="95.04" class="solid"></line> + <line x1="200.64001" y1="105.600006" x2="195.36" y2="116.16" class="solid"></line> + <line x1="190.08" y1="52.800003" x2="200.64001" y2="73.920006" class="solid"></line> + <line x1="200.64001" y1="73.920006" x2="216.48001" y2="73.920006" class="solid"></line> + <line x1="221.76001" y1="63.36" x2="216.48001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="190.08" y1="21.12" x2="187.44" y2="26.400002" class="solid"></line> + <line x1="187.44" y1="26.400002" x2="187.44" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="184.8" y1="31.68" x2="182.16" y2="36.960003" class="solid"></line> + <line x1="182.16" y1="36.960003" x2="182.16" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="179.52" y1="42.24" x2="176.88" y2="47.52" class="solid"></line> + <line x1="176.88" y1="47.52" x2="176.88" y2="73.920006" class="broken"></line> + </g> </svg> diff --git a/static/db/contributed/3d/larry3d.svg b/static/db/contributed/3d/larry3d.svg index ae4aab3eddd362ca5a16a9e34153ae44c6ccb90e..db8981407ed33edd57b0b91c2fabd9fd4caa17eb 100644 --- a/static/db/contributed/3d/larry3d.svg +++ b/static/db/contributed/3d/larry3d.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,38 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="68.64" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="84.48"></rect> <text x="27.720001" y="29.04" >L</text> <line x1="31.68" y1="21.12" x2="36.960003" y2="31.68" class="solid"></line> + <text x="69.96" y="39.600002" >'</text> + <text x="85.8" y="39.600002" >`</text> + <text x="112.200005" y="39.600002" >'</text> + <text x="80.520004" y="50.160004" >L</text> + <text x="80.520004" y="60.72" >,</text> <g> <line x1="5.28" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> <line x1="5.28" y1="10.56" x2="0" y2="21.12" class="solid"></line> <line x1="5.28" y1="10.56" x2="31.68" y2="63.36" class="solid"></line> - <line x1="36.960003" y1="10.56" x2="63.36" y2="63.36" class="solid"></line> + <line x1="36.960003" y1="10.56" x2="68.64" y2="73.920006" class="solid"></line> <line x1="0" y1="21.12" x2="26.400002" y2="73.920006" class="solid"></line> + <line x1="47.52" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="47.52" y1="10.56" x2="42.24" y2="21.12" class="solid"></line> + <line x1="47.52" y1="10.56" x2="73.920006" y2="63.36" class="solid"></line> + <line x1="58.08" y1="10.56" x2="68.64" y2="31.68" class="solid"></line> + <line x1="68.64" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="89.76" y1="31.68" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="73.920006" y1="63.36" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="73.920006" y1="63.36" x2="68.64" y2="73.920006" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="126.72" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="89.76" y2="73.920006" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="116.16" y2="63.36" class="solid"></line> + <line x1="84.48" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> + <line x1="116.16" y1="63.36" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="68.64" y1="73.920006" x2="89.76" y2="73.920006" class="solid"></line> + <line x1="116.16" y1="63.36" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="110.880005" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> + <line x1="142.56001" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> <line x1="31.68" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> <line x1="31.68" y1="42.24" x2="47.52" y2="73.920006" class="solid"></line> <line x1="42.24" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> @@ -121,4 +161,16 @@ <line x1="21.12" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> <line x1="21.12" y1="21.12" x2="26.400002" y2="31.68" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="42.24" x2="137.28" y2="42.24" class="solid"></line> + <line x1="132" y1="31.68" x2="137.28" y2="42.24" class="solid"></line> + <line x1="116.16" y1="42.24" x2="121.44" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="52.800003" x2="132" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="42.24" x2="132" y2="52.800003" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/3d/smisome1.svg b/static/db/contributed/3d/smisome1.svg index f75219e8337706a7bfa78d746c4eb5da1b874a7b..a53e94a66957a189ed4616458b3f4a79bfe8382d 100644 --- a/static/db/contributed/3d/smisome1.svg +++ b/static/db/contributed/3d/smisome1.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="163.68001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,14 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="163.68001" height="84.48"></rect> <text x="22.44" y="29.04" >:</text> <text x="11.88" y="39.600002" >:</text> + <text x="75.240005" y="29.04" >:</text> + <text x="69.96" y="60.72" >:</text> + <text x="122.76" y="29.04" >::</text> + <text x="133.32" y="39.600002" >:</text> + <text x="122.76" y="60.72" >:</text> <g> <line x1="21.12" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> <line x1="21.12" y1="10.56" x2="18.480001" y2="15.84" class="solid"></line> @@ -125,4 +147,59 @@ <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> <line x1="23.76" y1="36.960003" x2="23.76" y2="63.36" class="broken"></line> </g> + <g> + <line x1="73.920006" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="71.28001" y2="15.84" class="solid"></line> + <line x1="71.28001" y1="15.84" x2="71.28001" y2="42.24" class="broken"></line> + <line x1="73.920006" y1="10.56" x2="89.76" y2="42.24" class="solid"></line> + <line x1="76.560005" y1="15.84" x2="76.560005" y2="21.12" class="solid"></line> + <line x1="89.76" y1="10.56" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="81.840004" y1="26.400002" x2="81.840004" y2="52.800003" class="broken"></line> + <line x1="89.76" y1="42.24" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="89.76" y2="73.920006" class="solid"></line> + <line x1="63.36" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + <line x1="58.08" y1="42.24" x2="73.920006" y2="73.920006" class="solid"></line> + <line x1="89.76" y1="42.24" x2="73.920006" y2="73.920006" class="solid"></line> + <line x1="73.920006" y1="73.920006" x2="89.76" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="21.12" x2="66" y2="26.400002" class="solid"></line> + <line x1="66" y1="26.400002" x2="66" y2="52.800003" class="broken"></line> + </g> + <g> + <line x1="73.920006" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="76.560005" y1="36.960003" x2="76.560005" y2="63.36" class="broken"></line> + </g> + <g> + <line x1="68.64" y1="42.24" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="71.28001" y1="47.52" x2="71.28001" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="10.56" x2="142.56001" y2="10.56" class="solid"></line> + <line x1="126.72" y1="10.56" x2="124.08" y2="15.84" class="solid"></line> + <line x1="124.08" y1="15.84" x2="124.08" y2="21.12" class="solid"></line> + <line x1="126.72" y1="10.56" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="129.36" y1="15.84" x2="129.36" y2="21.12" class="solid"></line> + <line x1="142.56001" y1="10.56" x2="158.40001" y2="42.24" class="solid"></line> + <line x1="134.64" y1="26.400002" x2="134.64" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="42.24" x2="158.40001" y2="42.24" class="solid"></line> + <line x1="116.16" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="126.72" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="126.72" y1="31.68" x2="137.28" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="42.24" x2="132" y2="63.36" class="solid"></line> + <line x1="124.08" y1="47.52" x2="124.08" y2="52.800003" class="solid"></line> + <line x1="142.56001" y1="42.24" x2="137.28" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="153.12001" y2="52.800003" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="153.12001" y2="52.800003" class="solid"></line> + <line x1="132" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <line x1="142.56001" y1="52.800003" x2="147.84001" y2="63.36" class="solid"></line> + <line x1="132" y1="63.36" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="126.72" y1="73.920006" x2="142.56001" y2="73.920006" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="142.56001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="21.12" x2="118.8" y2="26.400002" class="solid"></line> + <line x1="118.8" y1="26.400002" x2="118.8" y2="52.800003" class="broken"></line> + </g> </svg> diff --git a/static/db/contributed/block/avatar.svg b/static/db/contributed/block/avatar.svg index d3896919cf5751bd10a2cc991052e61c9bc8c6f6..8d8de99347299bf2aae3490287a322a1045f74b9 100644 --- a/static/db/contributed/block/avatar.svg +++ b/static/db/contributed/block/avatar.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="63.36"></rect> - <text x="27.720001" y="39.600002" >|</text> + <rect class="backdrop" x="0" y="0" width="100.32001" height="63.36"></rect> + <text x="27.720001" y="29.04" >||</text> + <text x="64.68" y="29.04" >|</text> + <line x1="34.32" y1="31.68" x2="34.32" y2="42.24" class="solid"></line> <line x1="21.12" y1="42.24" x2="26.400002" y2="52.800003" class="solid"></line> <line x1="29.04" y1="42.24" x2="29.04" y2="52.800003" class="solid"></line> <g> @@ -104,7 +123,27 @@ <line x1="5.28" y1="10.56" x2="2.64" y2="15.84" class="solid"></line> <line x1="2.64" y1="15.84" x2="2.64" y2="42.24" class="solid"></line> <line x1="26.400002" y1="10.56" x2="29.04" y2="15.84" class="solid"></line> - <line x1="29.04" y1="15.84" x2="29.04" y2="31.68" class="solid"></line> + <line x1="29.04" y1="15.84" x2="29.04" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="36.960003" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="36.960003" y1="10.56" x2="34.32" y2="15.84" class="solid"></line> + <line x1="34.32" y1="15.84" x2="34.32" y2="21.12" class="solid"></line> + <line x1="58.08" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <line x1="63.36" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <line x1="68.64" y1="10.56" x2="66" y2="15.84" class="solid"></line> + <line x1="66" y1="15.84" x2="66" y2="21.12" class="solid"></line> + <line x1="84.48" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="89.76" y1="10.56" x2="95.04" y2="21.12" class="solid"></line> + <line x1="84.48" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> </g> <g> <line x1="15.84" y1="21.12" x2="21.12" y2="21.12" class="solid"></line> @@ -114,6 +153,20 @@ <line x1="23.76" y1="26.400002" x2="23.76" y2="42.24" class="solid"></line> <line x1="13.200001" y1="36.960003" x2="23.76" y2="36.960003" class="solid"></line> </g> + <g> + <line x1="44.88" y1="21.12" x2="52.800003" y2="21.12" class="solid"></line> + <line x1="44.88" y1="21.12" x2="44.88" y2="42.24" class="solid"></line> + <line x1="44.88" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="29.04" y1="31.68" x2="29.04" y2="36.960003" class="solid"></line> + <line x1="29.04" y1="36.960003" x2="36.960003" y2="52.800003" class="solid"></line> + <line x1="66" y1="31.68" x2="66" y2="36.960003" class="solid"></line> + <line x1="66" y1="36.960003" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="36.960003" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + </g> <g> <line x1="0" y1="42.24" x2="5.28" y2="52.800003" class="solid"></line> <line x1="5.28" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> diff --git a/static/db/contributed/block/bulbhead.svg b/static/db/contributed/block/bulbhead.svg index 2dc1db087886d607ab2b4122d8ef169dc9be31d0..de26acd525feb588c58adc43627522e50e8311f6 100644 --- a/static/db/contributed/block/bulbhead.svg +++ b/static/db/contributed/block/bulbhead.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="52.800003"></rect> + <line x1="58.08" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + <text x="69.96" y="29.04" ><</text> <g> <line x1="15.84" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="5.28" y2="31.68" class="solid"></line> @@ -111,4 +131,25 @@ <line x1="26.400002" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> <path d="M 36.960003,31.68 A 10.56,10.56 0,0,1 36.960003,42.24" class="nofill"></path> </g> + <g> + <line x1="47.52" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <path d="M 47.52,10.56 A 10.56,10.56 0,0,0 47.52,21.12" class="nofill"></path> + <line x1="68.64" y1="10.56" x2="73.920006" y2="21.12" class="solid"></line> + <path d="M 47.52,21.12 A 10.56,10.56 0,0,1 47.52,31.68" class="nofill"></path> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,0 47.52,42.24" class="nofill"></path> + <line x1="47.52" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="10.56" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="84.48" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <path d="M 79.200005,21.12 A 10.56,10.56 0,0,0 79.200005,31.68" class="nofill"></path> + <line x1="79.200005" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="89.76" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <path d="M 100.32001,10.56 A 10.56,10.56 0,0,1 100.32001,21.12" class="nofill"></path> + <path d="M 89.76,21.12 A 10.56,10.56 0,0,0 89.76,31.68" class="nofill"></path> + <line x1="89.76" y1="31.68" x2="100.32001" y2="31.68" class="solid"></line> + <path d="M 100.32001,31.68 A 10.56,10.56 0,0,1 100.32001,42.24" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/block/chunky.svg b/static/db/contributed/block/chunky.svg index fb69b8f731a6a1e9e523acd1b76a0de20ef5b745..0fa95680faa572bfc4ad10646ebe1fa0a93def71 100644 --- a/static/db/contributed/block/chunky.svg +++ b/static/db/contributed/block/chunky.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,13 +112,23 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="52.800003"></rect> <line x1="21.12" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> <g> - <line x1="2.64" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> + <line x1="2.64" y1="10.56" x2="60.72" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="42.24" class="solid"></line> <line x1="44.88" y1="10.56" x2="44.88" y2="42.24" class="solid"></line> - <line x1="2.64" y1="42.24" x2="44.88" y2="42.24" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="21.12" class="solid"></line> + <line x1="60.72" y1="15.84" x2="73.920006" y2="15.84" class="solid"></line> + <path d="M 73.920006,15.84 A 2.64,2.64 0,0,1 76.560005,18.480001" class="nofill"></path> + <path d="M 79.200005,15.84 A 2.64,2.64 0,0,0 76.560005,18.480001" class="nofill"></path> + <line x1="76.560005" y1="18.480001" x2="76.560005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="15.84" x2="100.32001" y2="15.84" class="solid"></line> + <path d="M 100.32001,15.84 A 2.64,2.64 0,0,1 102.96001,18.480001" class="nofill"></path> + <line x1="102.96001" y1="18.480001" x2="102.96001" y2="42.24" class="solid"></line> + <line x1="89.76" y1="31.68" x2="102.96001" y2="31.68" class="solid"></line> + <line x1="2.64" y1="42.24" x2="102.96001" y2="42.24" class="solid"></line> <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/block/crawford.svg b/static/db/contributed/block/crawford.svg index 51ee988bb0e6bafbb323617612bb06ad0f86ae3d..e231f210cfe113184b83f468103b570b8966b392 100644 --- a/static/db/contributed/block/crawford.svg +++ b/static/db/contributed/block/crawford.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,46 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="84.48"></rect> <text x="33" y="18.480001" >T</text> + <text x="101.64001" y="18.480001" >]</text> <text x="1.32" y="29.04" >Y</text> <line x1="34.32" y1="21.12" x2="34.32" y2="63.36" class="solid"></line> <line x1="2.64" y1="31.68" x2="2.64" y2="63.36" class="solid"></line> + <text x="69.96" y="39.600002" >T</text> <text x="1.32" y="71.28001" >l</text> <line x1="5.28" y1="73.920006" x2="15.84" y2="73.920006" class="solid"></line> <text x="17.16" y="71.28001" >j</text> <line x1="21.12" y1="73.920006" x2="31.68" y2="73.920006" class="solid"></line> - <text x="33" y="71.28001" >j</text> + <text x="33" y="71.28001" >jl</text> + <line x1="42.24" y1="73.920006" x2="68.64" y2="73.920006" class="solid"></line> + <text x="69.96" y="71.28001" >j</text> + <text x="101.64001" y="71.28001" >j</text> <text x="17.16" y="29.04" >o</text> + <text x="54.120003" y="29.04" >o</text> + <text x="54.120003" y="50.160004" >O</text> <g> <line x1="10.56" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> </g> + <g> + <line x1="39.600002" y1="10.56" x2="63.36" y2="10.56" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="63.36" class="solid"></line> + <line x1="63.36" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <path d="M 68.64,21.12 A 10.56,10.56 0,0,1 68.64,31.68" class="nofill"></path> + </g> + <g> + <line x1="89.76" y1="10.56" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="89.76" y1="10.56" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="52.800003" x2="79.200005" y2="73.920006" class="solid"></line> + <line x1="79.200005" y1="73.920006" x2="100.32001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="21.12" x2="89.76" y2="42.24" class="solid"></line> + <line x1="89.76" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="102.96001" y2="52.800003" class="solid"></line> + <line x1="102.96001" y1="52.800003" x2="102.96001" y2="63.36" class="solid"></line> + </g> <g> <line x1="15.84" y1="52.800003" x2="21.12" y2="52.800003" class="solid"></line> <line x1="18.480001" y1="52.800003" x2="18.480001" y2="63.36" class="solid"></line> diff --git a/static/db/contributed/block/cricket.svg b/static/db/contributed/block/cricket.svg index 04f609e3f05eb1c99098e6f31a9b2824fa5c98ac..788abed72306b360ae4417c52ddd33de1c49df68 100644 --- a/static/db/contributed/block/cricket.svg +++ b/static/db/contributed/block/cricket.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,17 +112,28 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="84.48"></rect> <line x1="21.12" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> <text x="6.6000004" y="29.04" >.</text> <text x="22.44" y="29.04" >1</text> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> <line x1="7.92" y1="39.600002" x2="7.92" y2="63.36" class="broken"></line> <text x="11.88" y="60.72" >:.</text> <text x="27.720001" y="60.72" >:.</text> <g> - <line x1="2.64" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> + <line x1="2.64" y1="10.56" x2="60.72" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="66" class="solid"></line> <line x1="44.88" y1="10.56" x2="44.88" y2="66" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="21.12" class="solid"></line> + <line x1="60.72" y1="15.84" x2="73.920006" y2="15.84" class="solid"></line> + <path d="M 73.920006,15.84 A 2.64,2.64 0,0,1 76.560005,18.480001" class="nofill"></path> + <path d="M 79.200005,15.84 A 2.64,2.64 0,0,0 76.560005,18.480001" class="nofill"></path> + <line x1="76.560005" y1="18.480001" x2="76.560005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="15.84" x2="100.32001" y2="15.84" class="solid"></line> + <path d="M 100.32001,15.84 A 2.64,2.64 0,0,1 102.96001,18.480001" class="nofill"></path> + <line x1="102.96001" y1="18.480001" x2="102.96001" y2="42.24" class="solid"></line> + <line x1="89.76" y1="31.68" x2="102.96001" y2="31.68" class="solid"></line> + <line x1="44.88" y1="42.24" x2="102.96001" y2="42.24" class="solid"></line> <path d="M 2.64,66 A 2.64,2.64 0,0,0 5.28,68.64" class="nofill"></path> <line x1="5.28" y1="68.64" x2="21.12" y2="68.64" class="solid"></line> <line x1="26.400002" y1="68.64" x2="42.24" y2="68.64" class="solid"></line> diff --git a/static/db/contributed/block/doom.svg b/static/db/contributed/block/doom.svg index ff4f65e81592197d3aadc25751683a4e123889a4..c044927c53d5e6c298ac00096a06337e7e840d45 100644 --- a/static/db/contributed/block/doom.svg +++ b/static/db/contributed/block/doom.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="73.920006"></rect> + <line x1="66" y1="42.24" x2="66" y2="52.800003" class="solid"></line> + <text x="43.56" y="60.72" >.</text> <g> <line x1="10.56" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="2.64" y2="26.400002" class="solid"></line> @@ -103,6 +122,22 @@ <line x1="2.64" y1="26.400002" x2="2.64" y2="52.800003" class="solid"></line> <line x1="34.32" y1="26.400002" x2="34.32" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="34.32" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="21.12" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="34.32" class="solid"></line> + <line x1="44.88" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="73.920006" y2="63.36" class="solid"></line> + <line x1="73.920006" y1="63.36" x2="92.4" y2="63.36" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="92.4" y2="31.68" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="58.08" y2="63.36" class="solid"></line> + <line x1="47.52" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="92.4" y2="42.24" class="solid"></line> + <line x1="92.4" y1="31.68" x2="92.4" y2="42.24" class="solid"></line> + <path d="M 79.200005,42.24 A 10.56,10.56 0,0,0 79.200005,52.800003" class="nofill"></path> + <line x1="79.200005" y1="52.800003" x2="92.4" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="52.800003" x2="92.4" y2="63.36" class="solid"></line> + </g> <g> <line x1="15.84" y1="21.12" x2="21.12" y2="21.12" class="solid"></line> <line x1="15.84" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> @@ -113,9 +148,15 @@ <line x1="13.200001" y1="42.24" x2="23.76" y2="42.24" class="solid"></line> <line x1="13.200001" y1="42.24" x2="13.200001" y2="63.36" class="solid"></line> <line x1="23.76" y1="42.24" x2="23.76" y2="63.36" class="solid"></line> - <line x1="23.76" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> + <line x1="23.76" y1="63.36" x2="42.24" y2="63.36" class="solid"></line> <line x1="36.960003" y1="52.800003" x2="31.68" y2="63.36" class="solid"></line> <line x1="0" y1="52.800003" x2="5.28" y2="63.36" class="solid"></line> <line x1="5.28" y1="63.36" x2="13.200001" y2="63.36" class="solid"></line> </g> + <g> + <line x1="44.88" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="44.88" y1="42.24" x2="44.88" y2="52.800003" class="solid"></line> + <line x1="44.88" y1="52.800003" x2="52.800003" y2="52.800003" class="solid"></line> + <path d="M 52.800003,42.24 A 10.56,10.56 0,0,1 52.800003,52.800003" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/block/drpepper.svg b/static/db/contributed/block/drpepper.svg index 7663374fd1f9d5c60117529c609b8e368fbe8c7d..7fcfc326f52952c562c7a8340d897c16d8ff3a30 100644 --- a/static/db/contributed/block/drpepper.svg +++ b/static/db/contributed/block/drpepper.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="84.48" height="52.800003"></rect> <text x="11.88" y="18.480001" >.</text> + <text x="38.280003" y="29.04" >.</text> + <text x="75.240005" y="29.04" >'</text> + <text x="75.240005" y="39.600002" >.</text> <g> <line x1="2.64" y1="10.56" x2="23.76" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="42.24" class="solid"></line> @@ -104,4 +124,16 @@ <line x1="2.64" y1="42.24" x2="23.76" y2="42.24" class="solid"></line> <line x1="13.200001" y1="31.68" x2="13.200001" y2="42.24" class="solid"></line> </g> + <g> + <line x1="29.04" y1="10.56" x2="39.600002" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="42.24" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="21.12" class="solid"></line> + <line x1="39.600002" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + <line x1="47.52" y1="21.12" x2="58.08" y2="42.24" class="solid"></line> + <line x1="58.08" y1="21.12" x2="73.920006" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="47.52" y2="42.24" class="solid"></line> + <line x1="66" y1="21.12" x2="66" y2="42.24" class="solid"></line> + <line x1="29.04" y1="42.24" x2="47.52" y2="42.24" class="solid"></line> + <line x1="58.08" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/block/eftirobot.svg b/static/db/contributed/block/eftirobot.svg index c1d7db3193935ceb07a1cb79bfb9ac02bfd798db..085b693d82b55ffc0727d3de80c87eb5a96fb3aa 100644 --- a/static/db/contributed/block/eftirobot.svg +++ b/static/db/contributed/block/eftirobot.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,12 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="63.36"></rect> + <line x1="36.960003" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <text x="43.56" y="18.480001" >)</text> <text x="11.88" y="29.04" >o</text> + <line x1="44.88" y1="21.12" x2="44.88" y2="36.960003" class="solid end_marked_open_circle"></line> + <text x="33" y="39.600002" >(</text> <g> <line x1="10.56" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <path d="M 10.56,10.56 A 10.56,10.56 0,0,0 10.56,21.12" class="nofill"></path> @@ -106,10 +127,22 @@ <path d="M 5.28,31.68 A 10.56,10.56 0,0,0 5.28,42.24" class="nofill"></path> <path d="M 26.400002,31.68 A 10.56,10.56 0,0,1 26.400002,42.24" class="nofill"></path> <line x1="5.28" y1="42.24" x2="0" y2="52.800003" class="solid"></line> - <line x1="0" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> + <line x1="44.88" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="63.36" y2="52.800003" class="solid"></line> + <line x1="63.36" y1="52.800003" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="63.36" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + <line x1="63.36" y1="31.68" x2="52.800003" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> + <line x1="0" y1="52.800003" x2="52.800003" y2="52.800003" class="solid"></line> <line x1="26.400002" y1="42.24" x2="31.68" y2="52.800003" class="solid"></line> + <line x1="36.960003" y1="42.24" x2="31.68" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="42.24" x2="73.920006" y2="52.800003" class="solid"></line> <line x1="10.56" y1="42.24" x2="21.12" y2="42.24" class="solid"></line> <line x1="10.56" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> <line x1="21.12" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> </g> + <g> + <path d="M 34.32,10.56 A 7.92,7.92 0,0,0 34.32,21.12" class="nofill"></path> + <line x1="34.32" y1="21.12" x2="34.32" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/block/epic.svg b/static/db/contributed/block/epic.svg index c47343601be7208bb548d659b59cfb27743d1763..28ae88ed7db0b2812b114be665f0c5df21b1050c 100644 --- a/static/db/contributed/block/epic.svg +++ b/static/db/contributed/block/epic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,36 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="95.04"></rect> <line x1="5.28" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <text x="43.56" y="18.480001" >)</text> <line x1="44.88" y1="21.12" x2="44.88" y2="84.48" class="solid"></line> + <text x="106.920006" y="71.28001" >(</text> + <text x="96.36" y="81.840004" >(</text> + <g> + <line x1="52.800003" y1="10.56" x2="84.48" y2="10.56" class="solid"></line> + <line x1="84.48" y1="10.56" x2="89.76" y2="21.12" class="solid"></line> + <path d="M 89.76,21.12 A 10.56,10.56 0,0,1 89.76,31.68" class="nofill"></path> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <path d="M 84.48,42.24 A 10.56,10.56 0,0,0 84.48,52.800003" class="nofill"></path> + <line x1="84.48" y1="52.800003" x2="89.76" y2="63.36" class="solid"></line> + <path d="M 89.76,63.36 A 10.56,10.56 0,0,1 89.76,73.920006" class="nofill"></path> + <line x1="63.36" y1="52.800003" x2="73.920006" y2="52.800003" class="solid"></line> + <path d="M 63.36,52.800003 A 10.56,10.56 0,0,0 63.36,63.36" class="nofill"></path> + <line x1="73.920006" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="63.36" y1="73.920006" x2="79.200005" y2="73.920006" class="solid"></line> + <path d="M 79.200005,63.36 A 10.56,10.56 0,0,1 79.200005,73.920006" class="nofill"></path> + <line x1="63.36" y1="73.920006" x2="68.64" y2="84.48" class="solid"></line> + <line x1="68.64" y1="84.48" x2="84.48" y2="84.48" class="solid"></line> + <line x1="89.76" y1="73.920006" x2="84.48" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="10.56" x2="137.28" y2="10.56" class="solid"></line> + <line x1="137.28" y1="10.56" x2="142.56001" y2="21.12" class="solid"></line> + <line x1="110.880005" y1="21.12" x2="132" y2="21.12" class="solid"></line> + <line x1="132" y1="21.12" x2="137.28" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="137.28" y2="31.68" class="solid"></line> + </g> <g> <path d="M 2.64,10.56 A 7.92,7.92 0,0,0 2.64,21.12" class="nofill"></path> <line x1="2.64" y1="21.12" x2="2.64" y2="84.48" class="solid"></line> @@ -111,6 +154,26 @@ <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <path d="M 31.68,31.68 A 10.56,10.56 0,0,1 31.68,42.24" class="nofill"></path> </g> + <g> + <path d="M 50.160004,10.56 A 7.92,7.92 0,0,0 50.160004,21.12" class="nofill"></path> + <line x1="50.160004" y1="21.12" x2="50.160004" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="63.36" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <path d="M 63.36,21.12 A 10.56,10.56 0,0,0 63.36,31.68" class="nofill"></path> + <path d="M 79.200005,21.12 A 10.56,10.56 0,0,1 79.200005,31.68" class="nofill"></path> + <path d="M 63.36,31.68 A 10.56,10.56 0,0,0 63.36,42.24" class="nofill"></path> + <line x1="63.36" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="73.920006" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 97.68,10.56 A 7.92,7.92 0,0,0 97.68,21.12" class="nofill"></path> + <line x1="97.68" y1="21.12" x2="97.68" y2="73.920006" class="solid"></line> + </g> + <g> + <path d="M 108.240005,21.12 A 7.92,7.92 0,0,0 108.240005,31.68" class="nofill"></path> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="63.36" class="solid"></line> + </g> <g> <line x1="15.84" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> <path d="M 15.84,52.800003 A 10.56,10.56 0,0,0 15.84,63.36" class="nofill"></path> @@ -124,4 +187,15 @@ <path d="M 36.960003,63.36 A 10.56,10.56 0,0,0 36.960003,73.920006" class="nofill"></path> <line x1="36.960003" y1="73.920006" x2="42.24" y2="84.48" class="solid"></line> </g> + <g> + <path d="M 58.08,63.36 A 10.56,10.56 0,0,1 58.08,73.920006" class="nofill"></path> + <line x1="58.08" y1="73.920006" x2="52.800003" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="110.880005" y1="73.920006" x2="132" y2="73.920006" class="solid"></line> + <line x1="137.28" y1="63.36" x2="132" y2="73.920006" class="solid"></line> + <line x1="137.28" y1="63.36" x2="142.56001" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="84.48" x2="137.28" y2="84.48" class="solid"></line> + <line x1="142.56001" y1="73.920006" x2="137.28" y2="84.48" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/block/graceful.svg b/static/db/contributed/block/graceful.svg index e0d112904449e05ddadbd18b7a0542ab1058e600..5c270cb20b847428310b47f4344a01a57276ff69 100644 --- a/static/db/contributed/block/graceful.svg +++ b/static/db/contributed/block/graceful.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="52.800003"></rect> + <line x1="47.52" y1="21.12" x2="52.800003" y2="21.12" class="solid"></line> + <line x1="47.52" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> <g> <line x1="10.56" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> @@ -108,4 +127,26 @@ <line x1="21.12" y1="10.56" x2="31.68" y2="31.68" class="solid"></line> <line x1="31.68" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> </g> + <g> + <line x1="36.960003" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,0 36.960003,21.12" class="nofill"></path> + <line x1="58.08" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <path d="M 36.960003,21.12 A 10.56,10.56 0,0,1 36.960003,31.68" class="nofill"></path> + <path d="M 63.36,21.12 A 10.56,10.56 0,0,0 63.36,31.68" class="nofill"></path> + <path d="M 36.960003,31.68 A 10.56,10.56 0,0,0 36.960003,42.24" class="nofill"></path> + <line x1="36.960003" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <line x1="63.36" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="73.920006" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <path d="M 68.64,21.12 A 10.56,10.56 0,0,0 68.64,31.68" class="nofill"></path> + <line x1="68.64" y1="31.68" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="89.76" y2="21.12" class="solid"></line> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,1 89.76,21.12" class="nofill"></path> + <path d="M 79.200005,21.12 A 10.56,10.56 0,0,0 79.200005,31.68" class="nofill"></path> + <line x1="79.200005" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <path d="M 89.76,31.68 A 10.56,10.56 0,0,1 89.76,42.24" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/block/graffiti.svg b/static/db/contributed/block/graffiti.svg index 85f94f1c6cba6a7f2ab7d828c48ba5111b9229af..3f5a5b7cf03c915c1c9395abb4053e406707816c 100644 --- a/static/db/contributed/block/graffiti.svg +++ b/static/db/contributed/block/graffiti.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,13 +112,28 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="132" height="73.920006"></rect> + <text x="54.120003" y="29.04" >|</text> + <text x="122.76" y="50.160004" >></text> <g> <line x1="15.84" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> <line x1="42.24" y1="10.56" x2="58.08" y2="42.24" class="solid"></line> <line x1="0" y1="42.24" x2="5.28" y2="52.800003" class="solid"></line> <line x1="58.08" y1="42.24" x2="47.52" y2="63.36" class="solid"></line> + <line x1="52.800003" y1="52.800003" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="47.52" y1="10.56" x2="66" y2="10.56" class="solid"></line> + <line x1="66" y1="7.92" x2="66" y2="21.12" class="solid"></line> + <line x1="47.52" y1="10.56" x2="52.800003" y2="21.12" class="solid"></line> + <line x1="52.800003" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="66" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="89.76" y1="42.24" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="110.880005" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="110.880005" y1="52.800003" x2="116.16" y2="63.36" class="solid"></line> + <line x1="121.44" y1="52.800003" x2="116.16" y2="63.36" class="solid"></line> <line x1="26.400002" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <line x1="21.12" y1="31.68" x2="36.960003" y2="31.68" class="solid"></line> @@ -109,5 +141,17 @@ <line x1="29.04" y1="31.68" x2="29.04" y2="52.800003" class="solid"></line> <line x1="5.28" y1="52.800003" x2="42.24" y2="52.800003" class="solid"></line> <line x1="42.24" y1="52.800003" x2="47.52" y2="63.36" class="solid"></line> + <line x1="95.04" y1="21.12" x2="116.16" y2="21.12" class="solid"></line> + <line x1="95.04" y1="21.12" x2="89.76" y2="31.68" class="solid"></line> + <line x1="100.32001" y1="31.68" x2="121.44" y2="31.68" class="solid"></line> + <line x1="116.16" y1="21.12" x2="121.44" y2="31.68" class="solid"></line> + <line x1="100.32001" y1="31.68" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="121.44" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="63.36" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + <line x1="63.36" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> + <line x1="68.64" y1="42.24" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/block/linux.svg b/static/db/contributed/block/linux.svg index de745c974fb22f345e043bf4b9a4fa630143e175..56bb78f7056168a01ca287056824a80f84a5f790 100644 --- a/static/db/contributed/block/linux.svg +++ b/static/db/contributed/block/linux.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,52 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="42.24"></rect> + <text x="69.96" y="7.92" >.</text> + <line x1="60.72" y1="10.56" x2="60.72" y2="21.12" class="solid"></line> + <text x="69.96" y="29.04" >'</text> <g> <path d="M 5.28,5.28 A 2.64,2.64 0,0,0 2.64,7.92" class="nofill"></path> <line x1="2.64" y1="7.92" x2="2.64" y2="23.76" class="solid"></line> - <line x1="5.28" y1="5.28" x2="21.12" y2="5.28" class="solid"></line> - <path d="M 21.12,5.28 A 2.64,2.64 0,0,1 23.76,7.92" class="nofill"></path> - <line x1="23.76" y1="7.92" x2="23.76" y2="23.76" class="solid"></line> + <line x1="5.28" y1="5.28" x2="23.76" y2="5.28" class="solid"></line> + <path d="M 23.76,5.28 A 5.28,5.28 0,0,1 29.04,10.56" class="nofill"></path> <path d="M 2.64,23.76 A 2.64,2.64 0,0,0 5.28,26.400002" class="nofill"></path> <line x1="5.28" y1="26.400002" x2="10.56" y2="26.400002" class="solid"></line> - <line x1="15.84" y1="26.400002" x2="21.12" y2="26.400002" class="solid"></line> + </g> + <g> + <path d="M 21.12,5.28 A 2.64,2.64 0,0,1 23.76,7.92" class="nofill"></path> + <line x1="23.76" y1="7.92" x2="23.76" y2="23.76" class="solid"></line> <path d="M 23.76,23.76 A 2.64,2.64 0,0,1 21.12,26.400002" class="nofill"></path> </g> + <g> + <path d="M 29.04,5.28 A 5.28,5.28 0,0,0 23.76,10.56" class="nofill"></path> + <line x1="29.04" y1="5.28" x2="44.88" y2="5.28" class="solid"></line> + <path d="M 44.88,5.28 A 5.28,5.28 0,0,1 50.160004,10.56" class="nofill"></path> + </g> + <g> + <path d="M 31.68,5.28 A 2.64,2.64 0,0,0 29.04,7.92" class="nofill"></path> + <line x1="29.04" y1="7.92" x2="29.04" y2="23.76" class="solid"></line> + <line x1="29.04" y1="15.84" x2="36.960003" y2="15.84" class="solid"></line> + <line x1="42.24" y1="13.200001" x2="36.960003" y2="15.84" class="solid"></line> + <line x1="36.960003" y1="15.84" x2="42.24" y2="18.480001" class="solid"></line> + <path d="M 29.04,23.76 A 2.64,2.64 0,0,0 31.68,26.400002" class="nofill"></path> + <line x1="31.68" y1="26.400002" x2="44.88" y2="26.400002" class="solid"></line> + <path d="M 50.160004,21.12 A 5.28,5.28 0,0,1 44.88,26.400002" class="nofill"></path> + </g> + <g> + <path d="M 52.800003,5.28 A 2.64,2.64 0,0,0 50.160004,7.92" class="nofill"></path> + <line x1="50.160004" y1="7.92" x2="50.160004" y2="23.76" class="solid"></line> + <line x1="52.800003" y1="5.28" x2="68.64" y2="5.28" class="solid"></line> + <path d="M 50.160004,23.76 A 2.64,2.64 0,0,0 52.800003,26.400002" class="nofill"></path> + <line x1="52.800003" y1="26.400002" x2="68.64" y2="26.400002" class="solid"></line> + </g> <g> <line x1="13.200001" y1="10.56" x2="13.200001" y2="21.12" class="solid"></line> <line x1="13.200001" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> <line x1="13.200001" y1="21.12" x2="15.84" y2="31.68" class="solid"></line> </g> + <g> + <line x1="15.84" y1="26.400002" x2="23.76" y2="26.400002" class="solid"></line> + <path d="M 29.04,21.12 A 5.28,5.28 0,0,1 23.76,26.400002" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/block/ogre.svg b/static/db/contributed/block/ogre.svg index 95ccdc6c8cca050c38aa9c113f2f491f0bd525a5..446409b16e32266e1bafcf901b195825153eef1e 100644 --- a/static/db/contributed/block/ogre.svg +++ b/static/db/contributed/block/ogre.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="63.36"></rect> + <line x1="66" y1="31.68" x2="66" y2="42.24" class="solid"></line> + <text x="43.56" y="50.160004" >.</text> <g> <line x1="15.84" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> @@ -109,7 +128,29 @@ <line x1="15.84" y1="42.24" x2="21.12" y2="42.24" class="solid"></line> <line x1="15.84" y1="42.24" x2="10.56" y2="52.800003" class="solid"></line> <line x1="21.12" y1="42.24" x2="26.400002" y2="52.800003" class="solid"></line> - <line x1="26.400002" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> + <line x1="26.400002" y1="52.800003" x2="42.24" y2="52.800003" class="solid"></line> <line x1="36.960003" y1="42.24" x2="31.68" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="34.32" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="31.68" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="23.76" class="solid"></line> + <line x1="44.88" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="52.800003" x2="92.4" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="21.12" x2="92.4" y2="21.12" class="solid"></line> + <line x1="73.920006" y1="21.12" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="47.52" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="92.4" y2="31.68" class="solid"></line> + <line x1="92.4" y1="21.12" x2="92.4" y2="31.68" class="solid"></line> + <path d="M 79.200005,31.68 A 10.56,10.56 0,0,0 79.200005,42.24" class="nofill"></path> + <line x1="79.200005" y1="42.24" x2="92.4" y2="42.24" class="solid"></line> + <line x1="92.4" y1="42.24" x2="92.4" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="44.88" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="44.88" y1="31.68" x2="44.88" y2="42.24" class="solid"></line> + <line x1="44.88" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> + <path d="M 52.800003,31.68 A 10.56,10.56 0,0,1 52.800003,42.24" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/block/puffy.svg b/static/db/contributed/block/puffy.svg index 7914869c37a118d51fb33671b77b754d41bc3815..7e15172013990f3b1edfc36903d1365a151cca43 100644 --- a/static/db/contributed/block/puffy.svg +++ b/static/db/contributed/block/puffy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,27 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="73.920006"></rect> <line x1="5.28" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> + <line x1="42.24" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <text x="33" y="18.480001" >)</text> + <text x="48.84" y="18.480001" >)</text> <line x1="34.32" y1="21.12" x2="34.32" y2="52.800003" class="solid"></line> + <text x="59.4" y="39.600002" >`</text> + <line x1="63.36" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> + <line x1="84.48" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> + <text x="85.8" y="39.600002" >'</text> + <text x="69.96" y="50.160004" >)</text> + <path d="M 76.560005,42.24 A 7.92,7.92 0,0,0 76.560005,52.800003" class="nofill"></path> <text x="1.32" y="60.72" >(</text> <line x1="5.28" y1="63.36" x2="10.56" y2="63.36" class="solid"></line> <text x="11.88" y="60.72" >)</text> <text x="22.44" y="60.72" >(</text> <line x1="26.400002" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> - <text x="33" y="60.72" >)</text> + <text x="33" y="60.72" >)(</text> + <line x1="42.24" y1="63.36" x2="47.52" y2="63.36" class="solid"></line> + <text x="48.84" y="60.72" >,</text> + <text x="69.96" y="60.72" >'`</text> <g> <path d="M 2.64,10.56 A 7.92,7.92 0,0,0 2.64,21.12" class="nofill"></path> <line x1="2.64" y1="21.12" x2="2.64" y2="52.800003" class="solid"></line> @@ -115,9 +143,37 @@ <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <path d="M 21.12,21.12 A 10.56,10.56 0,0,1 21.12,31.68" class="nofill"></path> </g> + <g> + <path d="M 39.600002,10.56 A 7.92,7.92 0,0,0 39.600002,21.12" class="nofill"></path> + <line x1="39.600002" y1="21.12" x2="39.600002" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="50.160004" y1="21.12" x2="50.160004" y2="34.32" class="solid"></line> + <line x1="50.160004" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="89.76" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="89.76" y1="42.24" x2="105.600006" y2="42.24" class="solid"></line> + <path d="M 105.600006,31.68 A 10.56,10.56 0,0,1 105.600006,42.24" class="nofill"></path> + <path d="M 89.76,42.24 A 10.56,10.56 0,0,0 89.76,52.800003" class="nofill"></path> + <line x1="89.76" y1="52.800003" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="84.48" y2="63.36" class="solid"></line> + <line x1="84.48" y1="63.36" x2="105.600006" y2="63.36" class="solid"></line> + <path d="M 105.600006,52.800003 A 10.56,10.56 0,0,1 105.600006,63.36" class="nofill"></path> + </g> <g> <line x1="13.200001" y1="42.24" x2="23.76" y2="42.24" class="solid"></line> <line x1="13.200001" y1="42.24" x2="13.200001" y2="52.800003" class="solid"></line> <line x1="23.76" y1="42.24" x2="23.76" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="50.160004" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <line x1="50.160004" y1="42.24" x2="50.160004" y2="52.800003" class="solid"></line> + <line x1="50.160004" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <path d="M 58.08,42.24 A 10.56,10.56 0,0,1 58.08,52.800003" class="nofill"></path> + </g> + <g> + <line x1="52.800003" y1="63.36" x2="63.36" y2="63.36" class="solid"></line> + <line x1="68.64" y1="52.800003" x2="63.36" y2="63.36" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/block/rectangles.svg b/static/db/contributed/block/rectangles.svg index 6f00a4857d997a643966726304bf0a87d550f865..606806818c33d086ee50df4f3af1e0f2374ca96a 100644 --- a/static/db/contributed/block/rectangles.svg +++ b/static/db/contributed/block/rectangles.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,13 +112,19 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="84.48" height="63.36"></rect> <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> + <text x="43.56" y="39.600002" >.</text> <g> - <line x1="2.64" y1="21.12" x2="34.32" y2="21.12" class="solid"></line> + <line x1="2.64" y1="21.12" x2="44.88" y2="21.12" class="solid"></line> <line x1="2.64" y1="21.12" x2="2.64" y2="52.800003" class="solid"></line> <line x1="34.32" y1="21.12" x2="34.32" y2="52.800003" class="solid"></line> - <line x1="2.64" y1="52.800003" x2="34.32" y2="52.800003" class="solid"></line> + <line x1="44.88" y1="21.12" x2="44.88" y2="31.68" class="solid"></line> + <line x1="44.88" y1="31.68" x2="76.560005" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="42.24" x2="76.560005" y2="42.24" class="solid"></line> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="52.800003" class="solid"></line> + <line x1="2.64" y1="52.800003" x2="76.560005" y2="52.800003" class="solid"></line> <line x1="18.480001" y1="42.24" x2="18.480001" y2="52.800003" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/block/rounded.svg b/static/db/contributed/block/rounded.svg index 188703b6e422069193b7b1ecccaae3af13824530..d6599444cef1e5612238717f878c4c545d98753c 100644 --- a/static/db/contributed/block/rounded.svg +++ b/static/db/contributed/block/rounded.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,38 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="73.920006"></rect> + <text x="43.56" y="18.480001" >)</text> + <line x1="76.560005" y1="42.24" x2="76.560005" y2="52.800003" class="solid"></line> <g> <line x1="5.28" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <path d="M 5.28,10.56 A 10.56,10.56 0,0,0 5.28,21.12" class="nofill"></path> - <line x1="5.28" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> - <path d="M 42.24,10.56 A 10.56,10.56 0,0,1 42.24,21.12" class="nofill"></path> - </g> - <g> + <line x1="5.28" y1="21.12" x2="44.88" y2="21.12" class="solid"></line> <line x1="2.64" y1="31.68" x2="44.88" y2="31.68" class="solid"></line> + <line x1="44.88" y1="21.12" x2="44.88" y2="63.36" class="solid"></line> <line x1="2.64" y1="31.68" x2="2.64" y2="63.36" class="solid"></line> - <line x1="44.88" y1="31.68" x2="44.88" y2="63.36" class="solid"></line> + <line x1="47.52" y1="10.56" x2="55.440002" y2="10.56" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <line x1="68.64" y1="31.68" x2="84.48" y2="63.36" class="solid"></line> + <line x1="84.48" y1="63.36" x2="105.600006" y2="63.36" class="solid"></line> + <line x1="84.48" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="84.48" y1="31.68" x2="68.64" y2="63.36" class="solid"></line> <line x1="13.200001" y1="42.24" x2="34.32" y2="42.24" class="solid"></line> <line x1="13.200001" y1="42.24" x2="13.200001" y2="63.36" class="solid"></line> <line x1="34.32" y1="42.24" x2="34.32" y2="63.36" class="solid"></line> <line x1="2.64" y1="63.36" x2="13.200001" y2="63.36" class="solid"></line> - <line x1="34.32" y1="63.36" x2="44.88" y2="63.36" class="solid"></line> + <line x1="34.32" y1="63.36" x2="68.64" y2="63.36" class="solid"></line> + <line x1="89.76" y1="42.24" x2="105.600006" y2="42.24" class="solid"></line> + <path d="M 105.600006,31.68 A 10.56,10.56 0,0,1 105.600006,42.24" class="nofill"></path> + <path d="M 89.76,42.24 A 10.56,10.56 0,0,0 89.76,52.800003" class="nofill"></path> + <line x1="89.76" y1="52.800003" x2="105.600006" y2="52.800003" class="solid"></line> + <path d="M 105.600006,52.800003 A 10.56,10.56 0,0,1 105.600006,63.36" class="nofill"></path> + </g> + <g> + <line x1="55.440002" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="55.440002" y1="42.24" x2="55.440002" y2="52.800003" class="solid"></line> + <line x1="55.440002" y1="52.800003" x2="63.36" y2="52.800003" class="solid"></line> + <path d="M 63.36,42.24 A 10.56,10.56 0,0,1 63.36,52.800003" class="nofill"></path> </g> </svg> diff --git a/static/db/contributed/block/serifcap.svg b/static/db/contributed/block/serifcap.svg index c7027d0f6637b93e8ee2f0a412108d02bc93961d..8f69b7fc94361b2157a9e33f250aee17cdd1e206 100644 --- a/static/db/contributed/block/serifcap.svg +++ b/static/db/contributed/block/serifcap.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="89.76" height="52.800003"></rect> + <text x="48.84" y="18.480001" >,</text> + <text x="48.84" y="29.04" >,</text> <g> <line x1="10.56" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <path d="M 10.56,10.56 A 10.56,10.56 0,0,0 10.56,21.12" class="nofill"></path> @@ -110,4 +129,26 @@ <line x1="21.12" y1="42.24" x2="26.400002" y2="42.24" class="solid"></line> <path d="M 26.400002,31.68 A 10.56,10.56 0,0,1 26.400002,42.24" class="nofill"></path> </g> + <g> + <line x1="36.960003" y1="10.56" x2="52.800003" y2="10.56" class="solid"></line> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,0 36.960003,21.12" class="nofill"></path> + <path d="M 52.800003,10.56 A 10.56,10.56 0,0,1 52.800003,21.12" class="nofill"></path> + <path d="M 36.960003,21.12 A 10.56,10.56 0,0,1 36.960003,31.68" class="nofill"></path> + <line x1="52.800003" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> + <path d="M 36.960003,31.68 A 10.56,10.56 0,0,0 36.960003,42.24" class="nofill"></path> + <line x1="36.960003" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="58.08" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="10.56" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <path d="M 63.36,21.12 A 10.56,10.56 0,0,0 63.36,31.68" class="nofill"></path> + <line x1="63.36" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> + <line x1="68.64" y1="42.24" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <path d="M 79.200005,10.56 A 10.56,10.56 0,0,1 79.200005,21.12" class="nofill"></path> + <path d="M 73.920006,21.12 A 10.56,10.56 0,0,0 73.920006,31.68" class="nofill"></path> + <line x1="73.920006" y1="31.68" x2="79.200005" y2="31.68" class="solid"></line> + <path d="M 79.200005,31.68 A 10.56,10.56 0,0,1 79.200005,42.24" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/block/stacey.svg b/static/db/contributed/block/stacey.svg index 43b782403800121db61697dc4d0d82cb513b8c79..e84e4bd4145064d85533c8f463bd82339f260308 100644 --- a/static/db/contributed/block/stacey.svg +++ b/static/db/contributed/block/stacey.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,35 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="73.920006"></rect> - <line x1="0" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="116.16" height="73.920006"></rect> + <line x1="0" y1="10.56" x2="110.880005" y2="10.56" class="solid"></line> <text x="1.32" y="18.480001" >7</text> <line x1="15.84" y1="21.12" x2="21.12" y2="21.12" class="solid"></line> - <text x="33" y="18.480001" >7</text> + <text x="33" y="18.480001" >77</text> + <line x1="52.800003" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <text x="69.96" y="18.480001" >77</text> + <text x="106.920006" y="18.480001" >7</text> <line x1="2.64" y1="21.12" x2="2.64" y2="63.36" class="broken"></line> <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="34.32" y1="21.12" x2="34.32" y2="63.36" class="broken"></line> + <line x1="39.600002" y1="21.12" x2="39.600002" y2="63.36" class="broken"></line> + <line x1="76.560005" y1="21.12" x2="76.560005" y2="63.36" class="broken"></line> + <line x1="89.76" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <text x="106.920006" y="29.04" >!</text> <text x="17.16" y="39.600002" >7</text> + <line x1="52.800003" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <text x="91.08" y="39.600002" >7</text> + <line x1="95.04" y1="42.24" x2="110.880005" y2="42.24" class="solid"></line> <line x1="18.480001" y1="42.24" x2="18.480001" y2="63.36" class="broken"></line> + <text x="54.120003" y="50.160004" >7</text> + <text x="106.920006" y="50.160004" >7</text> <line x1="5.28" y1="63.36" x2="15.84" y2="63.36" class="solid"></line> <line x1="21.12" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> + <line x1="42.24" y1="63.36" x2="68.64" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="105.600006" y2="63.36" class="solid"></line> + <text x="106.920006" y="60.72" >!</text> + <g> + <line x1="58.08" y1="31.68" x2="71.28001" y2="31.68" class="solid"></line> + <line x1="71.28001" y1="21.12" x2="71.28001" y2="63.36" class="broken"></line> + </g> </svg> diff --git a/static/db/contributed/block/starwars.svg b/static/db/contributed/block/starwars.svg index 0b9202508e2b233bce9adeac016cb393faadff77..4bdc1b6a501f88f3d803704aa8d3ad67addfa11a 100644 --- a/static/db/contributed/block/starwars.svg +++ b/static/db/contributed/block/starwars.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="73.920006" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="179.52" height="73.920006"></rect> + <text x="117.48" y="29.04" >|</text> + <text x="112.200005" y="39.600002" ><</text> + <text x="128.04001" y="29.04" >|</text> <g> <line x1="26.400002" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <line x1="26.400002" y1="10.56" x2="0" y2="63.36" class="solid"></line> @@ -113,4 +133,40 @@ <line x1="26.400002" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> <line x1="36.960003" y1="31.68" x2="42.24" y2="42.24" class="solid"></line> </g> + <g> + <line x1="76.560005" y1="7.92" x2="76.560005" y2="63.36" class="solid"></line> + <line x1="76.560005" y1="10.56" x2="110.880005" y2="10.56" class="solid"></line> + <line x1="110.880005" y1="10.56" x2="116.16" y2="21.12" class="solid"></line> + <line x1="118.8" y1="42.24" x2="118.8" y2="47.52" class="solid"></line> + <line x1="118.8" y1="47.52" x2="110.880005" y2="63.36" class="solid"></line> + <line x1="76.560005" y1="63.36" x2="110.880005" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="92.4" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="92.4" y1="21.12" x2="92.4" y2="31.68" class="solid"></line> + <line x1="92.4" y1="31.68" x2="100.32001" y2="31.68" class="solid"></line> + <path d="M 100.32001,21.12 A 10.56,10.56 0,0,1 100.32001,31.68" class="nofill"></path> + </g> + <g> + <line x1="92.4" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="92.4" y1="42.24" x2="92.4" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="52.800003" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 100.32001,42.24 A 10.56,10.56 0,0,1 100.32001,52.800003" class="nofill"></path> + </g> + <g> + <line x1="137.28" y1="10.56" x2="171.6" y2="10.56" class="solid"></line> + <line x1="137.28" y1="10.56" x2="132" y2="21.12" class="solid"></line> + <line x1="171.6" y1="10.56" x2="171.6" y2="23.76" class="solid"></line> + <path d="M 147.84001,26.400002 A 2.64,2.64 0,0,0 145.20001,29.04" class="nofill"></path> + <line x1="145.20001" y1="29.04" x2="145.20001" y2="44.88" class="solid"></line> + <line x1="147.84001" y1="26.400002" x2="168.96" y2="26.400002" class="solid"></line> + <path d="M 171.6,23.76 A 2.64,2.64 0,0,1 168.96,26.400002" class="nofill"></path> + <path d="M 145.20001,44.88 A 2.64,2.64 0,0,0 147.84001,47.52" class="nofill"></path> + <line x1="147.84001" y1="47.52" x2="168.96" y2="47.52" class="solid"></line> + <path d="M 168.96,47.52 A 2.64,2.64 0,0,1 171.6,50.160004" class="nofill"></path> + <line x1="171.6" y1="50.160004" x2="171.6" y2="63.36" class="solid"></line> + <line x1="129.36" y1="31.68" x2="129.36" y2="47.52" class="solid"></line> + <line x1="129.36" y1="47.52" x2="137.28" y2="63.36" class="solid"></line> + <line x1="137.28" y1="63.36" x2="171.6" y2="63.36" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/block/stop.svg b/static/db/contributed/block/stop.svg index 9ef7e4cfcff0372ccec98a7c3cdd08d35b47f091..3339b4805fb4e4401e58d68d963fc15fa0540826 100644 --- a/static/db/contributed/block/stop.svg +++ b/static/db/contributed/block/stop.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,40 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="73.920006"></rect> <text x="1.32" y="50.160004" >|</text> <line x1="13.200001" y1="52.800003" x2="29.04" y2="52.800003" class="solid"></line> <text x="38.280003" y="50.160004" >|</text> + <line x1="71.28001" y1="42.24" x2="71.28001" y2="52.800003" class="solid"></line> <g> - <line x1="21.12" y1="10.56" x2="5.28" y2="42.24" class="solid"></line> - <line x1="21.12" y1="10.56" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="50.160004" y2="10.56" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="42.24" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="52.800003" class="solid"></line> + <line x1="50.160004" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <path d="M 58.08,42.24 A 10.56,10.56 0,0,1 58.08,52.800003" class="nofill"></path> </g> <g> - <line x1="21.12" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> - <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="21.12" y1="10.56" x2="5.28" y2="42.24" class="solid"></line> + <line x1="21.12" y1="10.56" x2="36.960003" y2="42.24" class="solid"></line> </g> <g> + <line x1="55.440002" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="42.24" class="solid"></line> + <line x1="63.36" y1="31.68" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="100.32001" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="63.36" y2="63.36" class="solid"></line> + <line x1="84.48" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <path d="M 100.32001,31.68 A 10.56,10.56 0,0,1 100.32001,42.24" class="nofill"></path> + <path d="M 84.48,42.24 A 10.56,10.56 0,0,0 84.48,52.800003" class="nofill"></path> + <line x1="84.48" y1="52.800003" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> <line x1="2.64" y1="52.800003" x2="2.64" y2="63.36" class="solid"></line> - <line x1="2.64" y1="63.36" x2="39.600002" y2="63.36" class="solid"></line> + <line x1="2.64" y1="63.36" x2="63.36" y2="63.36" class="solid"></line> <line x1="39.600002" y1="52.800003" x2="39.600002" y2="63.36" class="solid"></line> </g> + <g> + <line x1="21.12" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> + <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/3-d.svg b/static/db/contributed/fill/3-d.svg deleted file mode 100644 index d4b29b9909312aebab9f4f73c96b710147f15f25..0000000000000000000000000000000000000000 --- a/static/db/contributed/fill/3-d.svg +++ /dev/null @@ -1,139 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="95.04"></rect> - <line x1="29.04" y1="5.28" x2="34.32" y2="5.28" class="solid"></line> - <line x1="23.76" y1="15.84" x2="34.32" y2="15.84" class="solid end_marked_circle"></line> - <line x1="31.68" y1="15.84" x2="39.600002" y2="15.84" class="solid"></line> - <line x1="31.68" y1="21.12" x2="39.600002" y2="15.84" class="solid end_marked_circle"></line> - <line x1="31.68" y1="31.68" x2="39.600002" y2="26.400002" class="solid end_marked_circle"></line> - <line x1="18.480001" y1="26.400002" x2="23.76" y2="26.400002" class="solid"></line> - <line x1="31.68" y1="21.12" x2="26.400002" y2="31.68" class="solid"></line> - <line x1="39.600002" y1="26.400002" x2="44.88" y2="26.400002" class="solid"></line> - <line x1="36.960003" y1="31.68" x2="44.88" y2="26.400002" class="solid end_marked_circle"></line> - <line x1="43.56" y1="29.04" x2="35.640003" y2="44.88" class="solid"></line> - <line x1="13.200001" y1="36.960003" x2="18.480001" y2="36.960003" class="solid"></line> - <line x1="36.960003" y1="31.68" x2="30.36" y2="44.88" class="solid"></line> - <line x1="44.88" y1="36.960003" x2="50.160004" y2="36.960003" class="solid"></line> - <line x1="7.92" y1="47.52" x2="7.92" y2="47.52" class="solid end_marked_circle"></line> - <line x1="0" y1="63.36" x2="7.92" y2="58.08" class="solid end_marked_circle"></line> - <line x1="10.56" y1="47.52" x2="23.76" y2="47.52" class="solid end_marked_circle"></line> - <line x1="21.12" y1="47.52" x2="55.440002" y2="47.52" class="solid"></line> - <line x1="21.12" y1="52.800003" x2="29.04" y2="47.52" class="solid end_marked_circle"></line> - <line x1="26.400002" y1="52.800003" x2="34.32" y2="47.52" class="solid end_marked_circle"></line> - <line x1="31.68" y1="52.800003" x2="39.600002" y2="47.52" class="solid end_marked_circle"></line> - <line x1="36.960003" y1="52.800003" x2="44.88" y2="47.52" class="solid end_marked_circle"></line> - <line x1="42.24" y1="52.800003" x2="50.160004" y2="47.52" class="solid end_marked_circle"></line> - <line x1="42.24" y1="63.36" x2="50.160004" y2="58.08" class="solid end_marked_circle"></line> - <line x1="7.92" y1="58.08" x2="13.200001" y2="58.08" class="solid"></line> - <line x1="0" y1="73.920006" x2="7.92" y2="68.64" class="solid end_marked_circle"></line> - <line x1="21.12" y1="52.800003" x2="14.52" y2="66" class="solid"></line> - <line x1="26.400002" y1="52.800003" x2="21.12" y2="63.36" class="solid"></line> - <line x1="31.68" y1="52.800003" x2="26.400002" y2="63.36" class="solid"></line> - <line x1="36.960003" y1="52.800003" x2="31.68" y2="63.36" class="solid"></line> - <line x1="42.24" y1="52.800003" x2="36.960003" y2="63.36" class="solid"></line> - <line x1="50.160004" y1="58.08" x2="55.440002" y2="58.08" class="solid"></line> - <line x1="42.24" y1="73.920006" x2="50.160004" y2="68.64" class="solid end_marked_circle"></line> - <line x1="7.92" y1="68.64" x2="13.200001" y2="68.64" class="solid"></line> - <line x1="5.28" y1="73.920006" x2="13.200001" y2="68.64" class="solid end_marked_circle"></line> - <line x1="11.88" y1="71.28001" x2="5.28" y2="84.48" class="solid"></line> - <line x1="50.160004" y1="68.64" x2="55.440002" y2="68.64" class="solid"></line> - <line x1="47.52" y1="73.920006" x2="55.440002" y2="68.64" class="solid end_marked_circle"></line> - <line x1="54.120003" y1="71.28001" x2="47.52" y2="84.48" class="solid"></line> - <line x1="5.28" y1="73.920006" x2="0" y2="84.48" class="solid"></line> - <line x1="47.52" y1="73.920006" x2="42.24" y2="84.48" class="solid"></line> -</svg> diff --git a/static/db/contributed/fill/3x5.svg b/static/db/contributed/fill/3x5.svg index 00347e1cb46d8f3ef9b157c38c64f60b74239bf2..206a684382598eab6b8d7de6f5b917354a4701da 100644 --- a/static/db/contributed/fill/3x5.svg +++ b/static/db/contributed/fill/3x5.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> <text x="6.6000004" y="18.480001" >#</text> <rect x="0" y="23.76" width="5.28" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="2.64" y1="29.04" x2="2.64" y2="34.32" class="solid"></line> @@ -112,4 +129,27 @@ <line x1="13.200001" y1="50.160004" x2="13.200001" y2="55.440002" class="solid"></line> <rect x="0" y="55.440002" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <rect x="10.56" y="55.440002" width="5.2799997" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="21.12" y="13.200001" width="5.2800007" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="23.76" y1="18.480001" x2="23.76" y2="23.76" class="solid"></line> + <rect x="21.12" y="23.76" width="5.2800007" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="23.76" y1="29.04" x2="23.76" y2="34.32" class="solid"></line> + <rect x="26.400002" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="31.68" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="34.32" y1="29.04" x2="34.32" y2="34.32" class="solid"></line> + <rect x="21.12" y="34.32" width="5.2800007" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="23.76" y1="39.600002" x2="23.76" y2="44.88" class="solid"></line> + <rect x="31.68" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="34.32" y1="39.600002" x2="34.32" y2="44.88" class="solid"></line> + <rect x="21.12" y="44.88" width="5.2800007" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="26.400002" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="31.68" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="42.24" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <rect x="47.52" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="42.24" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> + <rect x="42.24" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> </svg> diff --git a/static/db/contributed/fill/alligator.svg b/static/db/contributed/fill/alligator.svg index 84647ad1d76748d58c2f8dc8dc9fb5ea2e30f29e..36ae0c83bba314ee34f4845c09d44385fef3f629 100644 --- a/static/db/contributed/fill/alligator.svg +++ b/static/db/contributed/fill/alligator.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="195.36" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,26 +112,52 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="195.36" height="84.48"></rect> <text x="54.120003" y="7.92" >:</text> <line x1="60.72" y1="0" x2="60.72" y2="44.88" class="broken"></line> <text x="64.68" y="7.92" >:</text> + <text x="91.08" y="7.92" >:</text> + <line x1="97.68" y1="0" x2="97.68" y2="21.12" class="broken"></line> + <text x="101.64001" y="7.92" >::::</text> + <line x1="124.08" y1="0" x2="124.08" y2="31.68" class="broken"></line> + <text x="128.04001" y="7.92" >:</text> + <line x1="150.48001" y1="0" x2="150.48001" y2="21.12" class="broken"></line> + <text x="154.44" y="7.92" >::::</text> + <line x1="176.88" y1="0" x2="176.88" y2="21.12" class="broken"></line> + <text x="180.84001" y="7.92" >:</text> + <line x1="187.44" y1="0" x2="187.44" y2="21.12" class="broken"></line> <text x="38.280003" y="18.480001" >:+:</text> <line x1="66" y1="10.56" x2="66" y2="21.12" class="solid"></line> <text x="69.96" y="18.480001" >:</text> + <line x1="145.20001" y1="15.84" x2="145.20001" y2="26.400002" class="solid"></line> + <line x1="182.16" y1="10.56" x2="182.16" y2="15.84" class="solid"></line> <text x="33" y="29.04" >:</text> <line x1="39.600002" y1="21.12" x2="39.600002" y2="31.68" class="solid"></line> <text x="64.68" y="29.04" >:</text> <line x1="71.28001" y1="21.12" x2="71.28001" y2="31.68" class="solid"></line> + <line x1="81.840004" y1="26.400002" x2="81.840004" y2="34.32" class="solid"></line> <rect x="21.12" y="34.32" width="5.2800007" height="5.2800026" class="solid filled" rx="0"></rect> <text x="38.280003" y="39.600002" >:</text> <line x1="44.88" y1="36.960003" x2="52.800003" y2="36.960003" class="solid"></line> <rect x="52.800003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <text x="69.96" y="39.600002" >:</text> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="96.36" y="39.600002" >:</text> + <rect x="110.880005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="39.600002" x2="113.520004" y2="44.88" class="solid"></line> + <rect x="132" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <rect x="15.84" y="44.88" width="5.2800007" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="18.480001" y1="50.160004" x2="18.480001" y2="55.440002" class="solid"></line> <rect x="58.08" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="60.72" y1="50.160004" x2="60.72" y2="55.440002" class="solid"></line> + <line x1="63.36" y1="47.52" x2="73.920006" y2="47.52" class="solid"></line> + <line x1="71.28001" y1="42.24" x2="71.28001" y2="66" class="solid"></line> + <rect x="73.920006" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="76.560005" y1="50.160004" x2="76.560005" y2="55.440002" class="solid"></line> + <rect x="110.880005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="50.160004" x2="113.520004" y2="55.440002" class="solid"></line> + <rect x="126.72" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="50.160004" x2="129.36" y2="55.440002" class="solid"></line> <rect x="5.28" y="55.440002" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <line x1="7.92" y1="60.72" x2="7.92" y2="66" class="solid"></line> <line x1="10.56" y1="58.08" x2="15.84" y2="58.08" class="solid"></line> @@ -123,17 +166,71 @@ <line x1="50.160004" y1="60.72" x2="50.160004" y2="66" class="solid"></line> <line x1="52.800003" y1="58.08" x2="58.08" y2="58.08" class="solid"></line> <rect x="58.08" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="60.72" x2="60.72" y2="66" class="solid"></line> + <rect x="63.36" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="66" y1="60.72" x2="66" y2="66" class="solid"></line> + <line x1="68.64" y1="58.08" x2="73.920006" y2="58.08" class="solid"></line> + <rect x="73.920006" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="76.560005" y1="60.72" x2="76.560005" y2="66" class="solid"></line> + <rect x="100.32001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="60.72" x2="102.96001" y2="66" class="solid"></line> + <rect x="110.880005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="116.16" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="60.72" x2="118.8" y2="66" class="solid"></line> + <line x1="121.44" y1="58.08" x2="126.72" y2="58.08" class="solid"></line> + <rect x="126.72" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="60.72" x2="129.36" y2="66" class="solid"></line> + <rect x="153.12001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="155.76001" y1="60.72" x2="155.76001" y2="66" class="solid"></line> + <line x1="158.40001" y1="58.08" x2="163.68001" y2="58.08" class="solid"></line> + <rect x="163.68001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="0" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="5.28" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="10.56" y="66" width="5.2799997" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="68.64" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="116.16" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="121.44" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="126.72" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="132" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="137.28" y="66" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="153.12001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <g> + <line x1="134.64" y1="0" x2="134.64" y2="34.32" class="broken"></line> + <line x1="129.36" y1="10.56" x2="129.36" y2="44.88" class="solid"></line> + <line x1="129.36" y1="26.400002" x2="134.64" y2="26.400002" class="solid"></line> + <line x1="129.36" y1="36.960003" x2="132" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="87.12" y1="10.56" x2="87.12" y2="36.960003" class="broken"></line> + <line x1="92.4" y1="10.56" x2="92.4" y2="36.960003" class="solid"></line> + <line x1="84.48" y1="36.960003" x2="92.4" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="139.92" y1="10.56" x2="139.92" y2="36.960003" class="broken"></line> + <line x1="137.28" y1="36.960003" x2="139.92" y2="36.960003" class="solid"></line> + </g> <g> <line x1="29.04" y1="26.400002" x2="29.04" y2="36.960003" class="solid"></line> <line x1="26.400002" y1="36.960003" x2="34.32" y2="36.960003" class="solid"></line> <line x1="34.32" y1="31.68" x2="34.32" y2="36.960003" class="solid"></line> </g> + <g> + <line x1="118.8" y1="26.400002" x2="118.8" y2="55.440002" class="solid"></line> + <line x1="116.16" y1="36.960003" x2="118.8" y2="36.960003" class="solid"></line> + </g> <g> <line x1="18.480001" y1="36.960003" x2="21.12" y2="36.960003" class="solid"></line> <line x1="18.480001" y1="36.960003" x2="18.480001" y2="44.88" class="solid"></line> @@ -148,11 +245,32 @@ </g> <g> <line x1="58.08" y1="36.960003" x2="66" y2="36.960003" class="solid"></line> - <line x1="66" y1="31.68" x2="66" y2="47.52" class="solid"></line> - <line x1="63.36" y1="47.52" x2="66" y2="47.52" class="solid"></line> + <line x1="66" y1="31.68" x2="66" y2="55.440002" class="solid"></line> + </g> + <g> + <line x1="76.560005" y1="36.960003" x2="79.200005" y2="36.960003" class="solid"></line> + <line x1="76.560005" y1="36.960003" x2="76.560005" y2="44.88" class="solid"></line> + </g> + <g> + <line x1="81.840004" y1="39.600002" x2="81.840004" y2="47.52" class="solid"></line> + <line x1="79.200005" y1="47.52" x2="81.840004" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="102.96001" y1="36.960003" x2="110.880005" y2="36.960003" class="solid"></line> + <line x1="108.240005" y1="36.960003" x2="108.240005" y2="58.08" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="110.880005" y2="47.52" class="solid"></line> + <line x1="105.600006" y1="58.08" x2="110.880005" y2="58.08" class="solid"></line> + </g> + <g> + <line x1="134.64" y1="39.600002" x2="134.64" y2="47.52" class="solid"></line> + <line x1="132" y1="47.52" x2="134.64" y2="47.52" class="solid"></line> </g> <g> <line x1="13.200001" y1="47.52" x2="15.84" y2="47.52" class="solid"></line> <line x1="13.200001" y1="47.52" x2="13.200001" y2="66" class="solid"></line> </g> + <g> + <line x1="116.16" y1="47.52" x2="126.72" y2="47.52" class="solid"></line> + <line x1="124.08" y1="47.52" x2="124.08" y2="66" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/alligator2.svg b/static/db/contributed/fill/alligator2.svg index a6302d9b3eb0b8d092505344dd5e873626e9259b..e8528200b7274fb887bf83bf4de45a38d9f71b82 100644 --- a/static/db/contributed/fill/alligator2.svg +++ b/static/db/contributed/fill/alligator2.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,22 +112,57 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <line x1="23.76" y1="0" x2="23.76" y2="21.12" class="broken"></line> <text x="27.720001" y="7.92" >:</text> <line x1="34.32" y1="0" x2="34.32" y2="21.12" class="broken"></line> + <text x="64.68" y="7.92" >:</text> + <text x="75.240005" y="7.92" >::::</text> + <line x1="97.68" y1="0" x2="97.68" y2="34.32" class="broken"></line> + <text x="101.64001" y="7.92" >:</text> + <text x="117.48" y="7.92" >:</text> + <text x="128.04001" y="7.92" >::::</text> + <line x1="150.48001" y1="0" x2="150.48001" y2="21.12" class="broken"></line> + <text x="154.44" y="7.92" >:</text> <line x1="39.600002" y1="15.84" x2="39.600002" y2="34.32" class="solid"></line> + <line x1="66" y1="10.56" x2="66" y2="21.12" class="solid"></line> + <line x1="102.96001" y1="10.56" x2="102.96001" y2="21.12" class="solid"></line> + <text x="106.920006" y="18.480001" >::</text> + <line x1="118.8" y1="10.56" x2="118.8" y2="21.12" class="solid"></line> + <line x1="155.76001" y1="10.56" x2="155.76001" y2="15.84" class="solid"></line> + <text x="159.72" y="18.480001" >:</text> <line x1="7.92" y1="26.400002" x2="7.92" y2="34.32" class="solid"></line> + <text x="64.68" y="29.04" >:</text> + <text x="101.64001" y="29.04" >:</text> + <text x="117.48" y="29.04" >:</text> <rect x="5.28" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="39.600002" x2="7.92" y2="44.88" class="solid"></line> <text x="22.44" y="39.600002" >:</text> <line x1="29.04" y1="36.960003" x2="36.960003" y2="36.960003" class="solid"></line> <rect x="36.960003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <text x="54.120003" y="39.600002" >:</text> + <line x1="66" y1="31.68" x2="66" y2="34.32" class="solid"></line> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="39.600002" x2="66" y2="44.88" class="solid"></line> + <line x1="68.64" y1="36.960003" x2="76.560005" y2="36.960003" class="solid"></line> + <text x="80.520004" y="39.600002" >:</text> + <line x1="87.12" y1="36.960003" x2="95.04" y2="36.960003" class="solid"></line> + <rect x="95.04" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="31.68" x2="118.8" y2="34.32" class="solid"></line> + <rect x="116.16" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="39.600002" x2="118.8" y2="44.88" class="solid"></line> <rect x="5.28" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="50.160004" x2="7.92" y2="66" class="solid"></line> <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="50.160004" x2="50.160004" y2="66" class="solid"></line> + <line x1="55.440002" y1="42.24" x2="55.440002" y2="55.440002" class="solid"></line> + <line x1="52.800003" y1="47.52" x2="63.36" y2="47.52" class="solid"></line> + <rect x="63.36" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="50.160004" x2="66" y2="66" class="solid"></line> + <rect x="100.32001" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="50.160004" x2="102.96001" y2="66" class="solid"></line> + <rect x="116.16" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="50.160004" x2="118.8" y2="66" class="solid"></line> <rect x="0" y="55.440002" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <line x1="2.64" y1="60.72" x2="2.64" y2="66" class="solid"></line> <line x1="5.28" y1="58.08" x2="10.56" y2="58.08" class="solid"></line> @@ -121,12 +173,58 @@ <line x1="47.52" y1="58.08" x2="52.800003" y2="58.08" class="solid"></line> <rect x="52.800003" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="55.440002" y1="60.72" x2="55.440002" y2="66" class="solid"></line> + <rect x="58.08" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="60.72" x2="60.72" y2="66" class="solid"></line> + <line x1="63.36" y1="58.08" x2="68.64" y2="58.08" class="solid"></line> + <rect x="68.64" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="60.72" x2="71.28001" y2="66" class="solid"></line> + <rect x="95.04" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="60.72" x2="97.68" y2="66" class="solid"></line> + <line x1="100.32001" y1="58.08" x2="105.600006" y2="58.08" class="solid"></line> + <rect x="105.600006" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="116.16" y1="58.08" x2="121.44" y2="58.08" class="solid"></line> + <rect x="121.44" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="60.72" x2="124.08" y2="66" class="solid"></line> + <rect x="147.84001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="150.48001" y1="60.72" x2="150.48001" y2="66" class="solid"></line> + <rect x="158.40001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="0" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="5.28" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="10.56" y="66" width="5.2799997" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="68.64" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="116.16" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="121.44" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="126.72" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="132" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="137.28" y="66" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="153.12001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <g> + <line x1="60.72" y1="0" x2="60.72" y2="55.440002" class="broken"></line> + <line x1="60.72" y1="36.960003" x2="63.36" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="71.28001" y1="0" x2="71.28001" y2="55.440002" class="broken"></line> + <line x1="68.64" y1="47.52" x2="71.28001" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="124.08" y1="0" x2="124.08" y2="55.440002" class="broken"></line> + <line x1="121.44" y1="36.960003" x2="124.08" y2="36.960003" class="solid"></line> + <line x1="121.44" y1="47.52" x2="124.08" y2="47.52" class="solid"></line> + </g> <g> <line x1="13.200001" y1="10.56" x2="13.200001" y2="55.440002" class="broken"></line> <line x1="10.56" y1="47.52" x2="13.200001" y2="47.52" class="solid"></line> @@ -143,13 +241,31 @@ <line x1="50.160004" y1="26.400002" x2="50.160004" y2="44.88" class="solid"></line> <line x1="42.24" y1="36.960003" x2="50.160004" y2="36.960003" class="solid"></line> </g> + <g> + <line x1="108.240005" y1="21.12" x2="108.240005" y2="26.400002" class="solid"></line> + <line x1="108.240005" y1="26.400002" x2="113.520004" y2="26.400002" class="solid"></line> + <line x1="113.520004" y1="21.12" x2="113.520004" y2="55.440002" class="solid"></line> + <line x1="113.520004" y1="36.960003" x2="116.16" y2="36.960003" class="solid"></line> + </g> <g> <line x1="2.64" y1="36.960003" x2="5.28" y2="36.960003" class="solid"></line> <line x1="2.64" y1="36.960003" x2="2.64" y2="55.440002" class="solid"></line> <line x1="2.64" y1="47.52" x2="5.28" y2="47.52" class="solid"></line> </g> <g> - <line x1="55.440002" y1="42.24" x2="55.440002" y2="55.440002" class="solid"></line> - <line x1="52.800003" y1="47.52" x2="55.440002" y2="47.52" class="solid"></line> + <line x1="97.68" y1="39.600002" x2="97.68" y2="55.440002" class="solid"></line> + <line x1="97.68" y1="47.52" x2="100.32001" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="102.96001" y1="31.68" x2="102.96001" y2="44.88" class="solid"></line> + <line x1="100.32001" y1="36.960003" x2="102.96001" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="47.52" x2="116.16" y2="47.52" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="108.240005" y2="55.440002" class="solid"></line> + </g> + <g> + <line x1="153.12001" y1="58.08" x2="158.40001" y2="58.08" class="solid"></line> + <line x1="155.76001" y1="58.08" x2="155.76001" y2="66" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/fill/banner.svg b/static/db/contributed/fill/banner.svg index 745f34e470fbd6977ccf5c23d6874f03c465c223..b002f9e94a7ef65ccb1a276ce3da54c556394f6e 100644 --- a/static/db/contributed/fill/banner.svg +++ b/static/db/contributed/fill/banner.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="84.48"></rect> <text x="17.16" y="7.92" >#</text> <text x="11.88" y="18.480001" >#</text> <text x="22.44" y="18.480001" >#</text> @@ -120,4 +137,48 @@ <line x1="34.32" y1="60.72" x2="34.32" y2="66" class="solid"></line> <rect x="0" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="31.68" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="42.24" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="18.480001" x2="44.88" y2="23.76" class="solid"></line> + <rect x="47.52" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="58.08" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="63.36" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="42.24" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <text x="69.96" y="29.04" >#</text> + <rect x="42.24" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> + <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="58.08" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="42.24" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="50.160004" x2="44.88" y2="55.440002" class="solid"></line> + <rect x="68.64" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="50.160004" x2="71.28001" y2="55.440002" class="solid"></line> + <rect x="42.24" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="60.72" x2="44.88" y2="66" class="solid"></line> + <rect x="68.64" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="89.76" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="95.04" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="29.04" x2="81.840004" y2="34.32" class="solid"></line> + <text x="106.920006" y="29.04" >#</text> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="39.600002" x2="81.840004" y2="44.88" class="solid"></line> + <rect x="79.200005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="50.160004" x2="81.840004" y2="55.440002" class="solid"></line> + <rect x="79.200005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="106.920006" y="60.72" >#</text> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> </svg> diff --git a/static/db/contributed/fill/banner3-D.svg b/static/db/contributed/fill/banner3-D.svg index 404f95f54e89abd5a4a07bab46e9780e3d0060f1..e013e89f8130f5c7ba8f6f8a8b84d2c8d0a0500a 100644 --- a/static/db/contributed/fill/banner3-D.svg +++ b/static/db/contributed/fill/banner3-D.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="174.24" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="174.24" height="95.04"></rect> <text x="11.88" y="7.92" >:'</text> <rect x="21.12" y="2.64" width="5.2800007" height="5.2799997" class="solid filled" rx="0"></rect> <line x1="23.76" y1="7.92" x2="23.76" y2="13.200001" class="solid"></line> @@ -106,6 +123,31 @@ <line x1="44.88" y1="0" x2="44.88" y2="23.76" class="broken"></line> <line x1="50.160004" y1="0" x2="50.160004" y2="34.32" class="broken"></line> <line x1="55.440002" y1="0" x2="55.440002" y2="84.48" class="broken"></line> + <text x="59.4" y="7.92" >'</text> + <rect x="63.36" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="66" y1="7.92" x2="66" y2="13.200001" class="solid"></line> + <rect x="68.64" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="7.92" x2="71.28001" y2="13.200001" class="solid"></line> + <rect x="73.920006" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="84.48" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="89.76" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="95.04" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="7.92" x2="102.96001" y2="13.200001" class="solid"></line> + <text x="106.920006" y="7.92" >:</text> + <line x1="113.520004" y1="0" x2="113.520004" y2="84.48" class="broken"></line> + <text x="117.48" y="7.92" >:'</text> + <rect x="126.72" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="7.92" x2="129.36" y2="13.200001" class="solid"></line> + <rect x="132" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="137.28" y="2.64" width="5.280014" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="153.12001" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="155.76001" y1="7.92" x2="155.76001" y2="13.200001" class="solid"></line> + <text x="159.72" y="7.92" >:</text> + <line x1="166.32" y1="0" x2="166.32" y2="84.48" class="broken"></line> <rect x="15.84" y="13.200001" width="5.2800007" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="18.480001" y1="18.480001" x2="18.480001" y2="23.76" class="solid"></line> <rect x="21.12" y="13.200001" width="5.2800007" height="5.2800007" class="solid filled" rx="0"></rect> @@ -114,6 +156,27 @@ <line x1="39.600002" y1="10.56" x2="39.600002" y2="13.200001" class="solid"></line> <rect x="36.960003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="39.600002" y1="18.480001" x2="39.600002" y2="23.76" class="solid"></line> + <rect x="63.36" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="66" y1="18.480001" x2="66" y2="23.76" class="solid"></line> + <rect x="68.64" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="18.480001" x2="71.28001" y2="23.76" class="solid"></line> + <line x1="87.12" y1="18.480001" x2="87.12" y2="21.12" class="solid"></line> + <line x1="92.4" y1="18.480001" x2="92.4" y2="21.12" class="solid"></line> + <rect x="100.32001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="18.480001" x2="102.96001" y2="23.76" class="solid"></line> + <line x1="108.240005" y1="10.56" x2="108.240005" y2="13.200001" class="solid"></line> + <rect x="105.600006" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="18.480001" x2="108.240005" y2="23.76" class="solid"></line> + <rect x="121.44" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="18.480001" x2="124.08" y2="23.76" class="solid"></line> + <rect x="126.72" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="18.480001" x2="129.36" y2="23.76" class="solid"></line> + <line x1="139.92" y1="18.480001" x2="139.92" y2="66" class="broken"></line> + <line x1="145.20001" y1="18.480001" x2="145.20001" y2="66" class="broken"></line> + <rect x="153.12001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="161.04001" y1="10.56" x2="161.04001" y2="13.200001" class="solid"></line> + <rect x="158.40001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="161.04001" y1="18.480001" x2="161.04001" y2="55.440002" class="broken"></line> <rect x="10.56" y="23.76" width="5.2799997" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="13.200001" y1="29.04" x2="13.200001" y2="34.32" class="solid"></line> <rect x="15.84" y="23.76" width="5.2800007" height="5.2800007" class="solid filled" rx="0"></rect> @@ -122,6 +185,21 @@ <rect x="36.960003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <rect x="42.24" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <rect x="63.36" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="66" y1="29.04" x2="66" y2="34.32" class="solid"></line> + <rect x="68.64" y="23.76" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="29.04" x2="71.28001" y2="34.32" class="solid"></line> + <text x="75.240005" y="29.04" >::::</text> + <rect x="100.32001" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="29.04" x2="102.96001" y2="34.32" class="solid"></line> + <rect x="105.600006" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="29.04" x2="108.240005" y2="31.68" class="solid"></line> + <rect x="121.44" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="29.04" x2="124.08" y2="34.32" class="solid"></line> + <rect x="126.72" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="29.04" x2="129.36" y2="34.32" class="solid"></line> + <line x1="150.48001" y1="29.04" x2="150.48001" y2="52.800003" class="broken"></line> + <line x1="155.76001" y1="29.04" x2="155.76001" y2="55.440002" class="broken"></line> <rect x="5.28" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="39.600002" x2="7.92" y2="44.88" class="solid"></line> <rect x="10.56" y="34.32" width="5.2799997" height="5.2800026" class="solid filled" rx="0"></rect> @@ -132,6 +210,26 @@ <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="39.600002" x2="50.160004" y2="44.88" class="solid"></line> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="39.600002" x2="66" y2="44.88" class="solid"></line> + <rect x="68.64" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="39.600002" x2="71.28001" y2="44.88" class="solid"></line> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="34.32" class="solid"></line> + <rect x="73.920006" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="31.68" x2="81.840004" y2="34.32" class="solid"></line> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="31.68" x2="87.12" y2="34.32" class="solid"></line> + <rect x="84.48" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="31.68" x2="92.4" y2="34.32" class="solid"></line> + <rect x="89.76" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="95.04" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="39.600002" x2="102.96001" y2="44.88" class="solid"></line> + <text x="106.920006" y="39.600002" >:</text> + <rect x="121.44" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="39.600002" x2="124.08" y2="44.88" class="solid"></line> + <rect x="126.72" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="39.600002" x2="129.36" y2="44.88" class="solid"></line> <rect x="5.28" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="50.160004" x2="7.92" y2="55.440002" class="solid"></line> <rect x="10.56" y="44.88" width="5.2799997" height="5.2800026" class="solid filled" rx="0"></rect> @@ -148,6 +246,21 @@ <line x1="44.88" y1="50.160004" x2="44.88" y2="55.440002" class="solid"></line> <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="50.160004" x2="50.160004" y2="55.440002" class="solid"></line> + <rect x="63.36" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="50.160004" x2="66" y2="55.440002" class="solid"></line> + <rect x="68.64" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="50.160004" x2="71.28001" y2="55.440002" class="solid"></line> + <line x1="87.12" y1="50.160004" x2="87.12" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="50.160004" x2="92.4" y2="52.800003" class="solid"></line> + <rect x="100.32001" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="50.160004" x2="102.96001" y2="55.440002" class="solid"></line> + <line x1="108.240005" y1="42.24" x2="108.240005" y2="44.88" class="solid"></line> + <rect x="105.600006" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="50.160004" x2="108.240005" y2="55.440002" class="solid"></line> + <rect x="121.44" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="50.160004" x2="124.08" y2="55.440002" class="solid"></line> + <rect x="126.72" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="50.160004" x2="129.36" y2="55.440002" class="solid"></line> <rect x="5.28" y="55.440002" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <line x1="7.92" y1="60.72" x2="7.92" y2="66" class="solid"></line> <rect x="10.56" y="55.440002" width="5.2799997" height="5.279999" class="solid filled" rx="0"></rect> @@ -159,14 +272,53 @@ <line x1="44.88" y1="60.72" x2="44.88" y2="66" class="solid"></line> <rect x="47.52" y="55.440002" width="5.2800026" height="5.279999" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="60.72" x2="50.160004" y2="66" class="solid"></line> + <rect x="63.36" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="66" y1="60.72" x2="66" y2="66" class="solid"></line> + <rect x="68.64" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="60.72" x2="71.28001" y2="66" class="solid"></line> + <text x="75.240005" y="60.72" >::::</text> + <rect x="100.32001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="60.72" x2="102.96001" y2="66" class="solid"></line> + <rect x="105.600006" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="60.72" x2="108.240005" y2="84.48" class="broken"></line> + <rect x="121.44" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="126.72" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="60.72" x2="129.36" y2="66" class="solid"></line> + <rect x="153.12001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="155.76001" y1="60.72" x2="155.76001" y2="66" class="solid"></line> + <rect x="158.40001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="161.04001" y1="60.72" x2="161.04001" y2="84.48" class="broken"></line> <rect x="5.28" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="10.56" y="66" width="5.2799997" height="5.2800064" class="solid filled" rx="0"></rect> <line x1="13.200001" y1="71.28001" x2="13.200001" y2="73.920006" class="solid"></line> <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="71.28001" x2="50.160004" y2="73.920006" class="solid"></line> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="68.64" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="76.560005" y1="63.36" x2="76.560005" y2="66" class="solid"></line> + <rect x="73.920006" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="63.36" x2="81.840004" y2="66" class="solid"></line> + <rect x="79.200005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="63.36" x2="87.12" y2="66" class="solid"></line> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="63.36" x2="92.4" y2="66" class="solid"></line> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="71.28001" x2="102.96001" y2="73.920006" class="solid"></line> + <line x1="118.8" y1="71.28001" x2="118.8" y2="73.920006" class="solid"></line> + <rect x="126.72" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="132" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="137.28" y="66" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="153.12001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="155.76001" y1="71.28001" x2="155.76001" y2="73.920006" class="solid"></line> <text x="1.32" y="81.840004" >..:</text> <text x="38.280003" y="81.840004" >..:</text> + <text x="59.4" y="81.840004" >........:</text> + <text x="117.48" y="81.840004" >:......:</text> <g> <line x1="2.64" y1="0" x2="2.64" y2="34.32" class="broken"></line> <path d="M 2.64,34.32 A 2.64,2.64 0,0,0 5.28,36.960003" class="nofill"></path> @@ -183,6 +335,32 @@ <path d="M 13.200001,13.200001 A 2.64,2.64 0,0,0 15.84,15.84" class="nofill"></path> <line x1="13.200001" y1="15.84" x2="15.84" y2="15.84" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="15.84" x2="76.560005" y2="15.84" class="solid"></line> + <path d="M 73.920006,15.84 A 2.64,2.64 0,0,1 76.560005,18.480001" class="nofill"></path> + <path d="M 76.560005,15.84 A 5.28,5.28 0,0,1 81.840004,21.12" class="nofill"></path> + <line x1="76.560005" y1="18.480001" x2="76.560005" y2="21.12" class="solid"></line> + <line x1="81.840004" y1="18.480001" x2="81.840004" y2="21.12" class="solid"></line> + </g> + <g> + <path d="M 113.520004,10.56 A 5.28,5.28 0,0,0 118.8,15.84" class="nofill"></path> + <line x1="118.8" y1="10.56" x2="118.8" y2="13.200001" class="solid"></line> + <path d="M 118.8,13.200001 A 2.64,2.64 0,0,0 121.44,15.84" class="nofill"></path> + <line x1="118.8" y1="15.84" x2="121.44" y2="15.84" class="solid"></line> + </g> + <g> + <line x1="132" y1="15.84" x2="134.64" y2="15.84" class="solid"></line> + <path d="M 132,15.84 A 2.64,2.64 0,0,1 134.64,18.480001" class="nofill"></path> + <path d="M 134.64,15.84 A 5.28,5.28 0,0,1 139.92,21.12" class="nofill"></path> + <line x1="134.64" y1="18.480001" x2="134.64" y2="66" class="broken"></line> + </g> + <g> + <line x1="73.920006" y1="47.52" x2="76.560005" y2="47.52" class="solid"></line> + <path d="M 73.920006,47.52 A 2.64,2.64 0,0,1 76.560005,50.160004" class="nofill"></path> + <path d="M 76.560005,47.52 A 5.28,5.28 0,0,1 81.840004,52.800003" class="nofill"></path> + <line x1="76.560005" y1="50.160004" x2="76.560005" y2="52.800003" class="solid"></line> + <line x1="81.840004" y1="50.160004" x2="81.840004" y2="52.800003" class="solid"></line> + </g> <g> <line x1="15.84" y1="58.08" x2="18.480001" y2="58.08" class="solid"></line> <path d="M 15.84,58.08 A 2.64,2.64 0,0,1 18.480001,60.72" class="nofill"></path> diff --git a/static/db/contributed/fill/banner3.svg b/static/db/contributed/fill/banner3.svg index 91f94bec7f28b08e76254c7439040835a1bc7b31..fb0359120a14684f37a8f19e43e0a9602be2359a 100644 --- a/static/db/contributed/fill/banner3.svg +++ b/static/db/contributed/fill/banner3.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="84.48"></rect> <rect x="15.84" y="2.64" width="5.2800007" height="5.2799997" class="solid filled" rx="0"></rect> <line x1="18.480001" y1="7.92" x2="18.480001" y2="13.200001" class="solid"></line> <rect x="21.12" y="2.64" width="5.2800007" height="5.2799997" class="solid filled" rx="0"></rect> @@ -146,4 +163,102 @@ <rect x="5.28" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="36.960003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="7.92" x2="55.440002" y2="13.200001" class="solid"></line> + <rect x="58.08" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="7.92" x2="60.72" y2="13.200001" class="solid"></line> + <rect x="63.36" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="68.64" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="84.48" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="89.76" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="7.92" x2="92.4" y2="13.200001" class="solid"></line> + <rect x="52.800003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="18.480001" x2="55.440002" y2="23.76" class="solid"></line> + <rect x="58.08" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="18.480001" x2="60.72" y2="23.76" class="solid"></line> + <rect x="89.76" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="18.480001" x2="92.4" y2="23.76" class="solid"></line> + <rect x="95.04" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="18.480001" x2="97.68" y2="23.76" class="solid"></line> + <rect x="52.800003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="29.04" x2="55.440002" y2="34.32" class="solid"></line> + <rect x="58.08" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="29.04" x2="60.72" y2="34.32" class="solid"></line> + <rect x="89.76" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="29.04" x2="92.4" y2="34.32" class="solid"></line> + <rect x="95.04" y="23.76" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="39.600002" x2="55.440002" y2="44.88" class="solid"></line> + <rect x="58.08" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="39.600002" x2="60.72" y2="44.88" class="solid"></line> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="68.64" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="84.48" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="89.76" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="39.600002" x2="92.4" y2="44.88" class="solid"></line> + <rect x="52.800003" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="50.160004" x2="55.440002" y2="55.440002" class="solid"></line> + <rect x="58.08" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="50.160004" x2="60.72" y2="55.440002" class="solid"></line> + <rect x="89.76" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="50.160004" x2="92.4" y2="55.440002" class="solid"></line> + <rect x="95.04" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="50.160004" x2="97.68" y2="55.440002" class="solid"></line> + <rect x="52.800003" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="60.72" x2="55.440002" y2="66" class="solid"></line> + <rect x="58.08" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="60.72" x2="60.72" y2="66" class="solid"></line> + <rect x="89.76" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="60.72" x2="92.4" y2="66" class="solid"></line> + <rect x="95.04" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="68.64" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="7.92" x2="113.520004" y2="13.200001" class="solid"></line> + <rect x="116.16" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="121.44" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="126.72" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="132" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="137.28" y="2.64" width="5.280014" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="139.92" y1="7.92" x2="139.92" y2="13.200001" class="solid"></line> + <rect x="105.600006" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="18.480001" x2="108.240005" y2="23.76" class="solid"></line> + <rect x="110.880005" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="18.480001" x2="113.520004" y2="23.76" class="solid"></line> + <rect x="137.28" y="13.200001" width="5.280014" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="105.600006" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="29.04" x2="108.240005" y2="34.32" class="solid"></line> + <rect x="110.880005" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="29.04" x2="113.520004" y2="34.32" class="solid"></line> + <rect x="105.600006" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="39.600002" x2="108.240005" y2="44.88" class="solid"></line> + <rect x="110.880005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="39.600002" x2="113.520004" y2="44.88" class="solid"></line> + <rect x="105.600006" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="50.160004" x2="108.240005" y2="55.440002" class="solid"></line> + <rect x="110.880005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="50.160004" x2="113.520004" y2="55.440002" class="solid"></line> + <rect x="105.600006" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="60.72" x2="113.520004" y2="66" class="solid"></line> + <rect x="137.28" y="55.440002" width="5.280014" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="139.92" y1="60.72" x2="139.92" y2="66" class="solid"></line> + <rect x="142.56001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="116.16" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="121.44" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="126.72" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="132" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="137.28" y="66" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> </svg> diff --git a/static/db/contributed/fill/banner4.svg b/static/db/contributed/fill/banner4.svg index 21d6a66b8eea9183e2a62f461d0122ce2b6b0565..7e1ed1210262ebe2d5c422e7b4be8950072b2204 100644 --- a/static/db/contributed/fill/banner4.svg +++ b/static/db/contributed/fill/banner4.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,34 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="84.48"></rect> <text x="1.32" y="7.92" >...</text> <rect x="21.12" y="2.64" width="5.2800007" height="5.2799997" class="solid filled" rx="0"></rect> <line x1="23.76" y1="7.92" x2="23.76" y2="13.200001" class="solid"></line> <rect x="26.400002" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> <rect x="31.68" y="2.64" width="5.2800026" height="5.2799997" class="solid filled" rx="0"></rect> <line x1="34.32" y1="7.92" x2="34.32" y2="13.200001" class="solid"></line> - <text x="43.56" y="7.92" >..</text> + <text x="43.56" y="7.92" >...</text> + <rect x="58.08" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="7.92" x2="60.72" y2="13.200001" class="solid"></line> + <rect x="63.36" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="66" y1="7.92" x2="66" y2="13.200001" class="solid"></line> + <rect x="68.64" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="84.48" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="89.76" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="95.04" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="7.92" x2="97.68" y2="13.200001" class="solid"></line> + <text x="106.920006" y="7.92" >.</text> + <rect x="116.16" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="7.92" x2="118.8" y2="13.200001" class="solid"></line> + <rect x="121.44" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="126.72" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="132" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="137.28" y="2.64" width="5.280014" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="7.92" x2="145.20001" y2="13.200001" class="solid"></line> <text x="1.32" y="18.480001" >..</text> <rect x="15.84" y="13.200001" width="5.2800007" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="18.480001" y1="18.480001" x2="18.480001" y2="23.76" class="solid"></line> @@ -111,7 +148,24 @@ <rect x="31.68" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> <rect x="36.960003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="39.600002" y1="18.480001" x2="39.600002" y2="23.76" class="solid"></line> - <text x="48.84" y="18.480001" >.</text> + <text x="48.84" y="18.480001" >..</text> + <rect x="58.08" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="18.480001" x2="60.72" y2="23.76" class="solid"></line> + <rect x="63.36" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="66" y1="18.480001" x2="66" y2="23.76" class="solid"></line> + <text x="69.96" y="18.480001" >.....</text> + <rect x="95.04" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="18.480001" x2="97.68" y2="23.76" class="solid"></line> + <rect x="100.32001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="18.480001" x2="102.96001" y2="23.76" class="solid"></line> + <line x1="105.600006" y1="15.84" x2="110.880005" y2="15.84" class="solid"></line> + <rect x="110.880005" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="18.480001" x2="113.520004" y2="23.76" class="solid"></line> + <rect x="116.16" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="18.480001" x2="118.8" y2="23.76" class="solid"></line> + <text x="122.76" y="18.480001" >....</text> + <rect x="142.56001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <text x="1.32" y="29.04" >.</text> <rect x="10.56" y="23.76" width="5.2799997" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="13.200001" y1="29.04" x2="13.200001" y2="34.32" class="solid"></line> @@ -120,6 +174,19 @@ <rect x="36.960003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <rect x="42.24" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <rect x="58.08" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="29.04" x2="60.72" y2="34.32" class="solid"></line> + <rect x="63.36" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="66" y1="29.04" x2="66" y2="34.32" class="solid"></line> + <text x="75.240005" y="29.04" >...</text> + <rect x="95.04" y="23.76" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="29.04" x2="97.68" y2="34.32" class="solid"></line> + <rect x="100.32001" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="29.04" x2="113.520004" y2="34.32" class="solid"></line> + <rect x="116.16" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="29.04" x2="118.8" y2="34.32" class="solid"></line> + <text x="122.76" y="29.04" >......</text> <text x="1.32" y="39.600002" >.</text> <rect x="5.28" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="39.600002" x2="7.92" y2="44.88" class="solid"></line> @@ -130,6 +197,24 @@ <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="39.600002" x2="50.160004" y2="44.88" class="solid"></line> + <line x1="52.800003" y1="36.960003" x2="58.08" y2="36.960003" class="solid"></line> + <rect x="58.08" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="39.600002" x2="60.72" y2="44.88" class="solid"></line> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="39.600002" x2="66" y2="44.88" class="solid"></line> + <rect x="68.64" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="31.68" x2="81.840004" y2="34.32" class="solid"></line> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="84.48" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="89.76" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="95.04" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="39.600002" x2="97.68" y2="44.88" class="solid"></line> + <rect x="110.880005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="39.600002" x2="113.520004" y2="44.88" class="solid"></line> + <rect x="116.16" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="39.600002" x2="118.8" y2="44.88" class="solid"></line> + <text x="122.76" y="39.600002" >......</text> <text x="1.32" y="50.160004" >.</text> <rect x="5.28" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="50.160004" x2="7.92" y2="55.440002" class="solid"></line> @@ -145,6 +230,22 @@ <line x1="44.88" y1="50.160004" x2="44.88" y2="55.440002" class="solid"></line> <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="50.160004" x2="50.160004" y2="55.440002" class="solid"></line> + <line x1="52.800003" y1="47.52" x2="58.08" y2="47.52" class="solid"></line> + <rect x="58.08" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="50.160004" x2="60.72" y2="55.440002" class="solid"></line> + <rect x="63.36" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="50.160004" x2="66" y2="55.440002" class="solid"></line> + <text x="69.96" y="50.160004" >.....</text> + <rect x="95.04" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="50.160004" x2="97.68" y2="55.440002" class="solid"></line> + <rect x="100.32001" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="50.160004" x2="102.96001" y2="55.440002" class="solid"></line> + <line x1="105.600006" y1="47.52" x2="110.880005" y2="47.52" class="solid"></line> + <rect x="110.880005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="50.160004" x2="113.520004" y2="55.440002" class="solid"></line> + <rect x="116.16" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="50.160004" x2="118.8" y2="55.440002" class="solid"></line> + <text x="122.76" y="50.160004" >......</text> <text x="1.32" y="60.72" >.</text> <rect x="5.28" y="55.440002" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <line x1="7.92" y1="60.72" x2="7.92" y2="66" class="solid"></line> @@ -155,12 +256,49 @@ <line x1="44.88" y1="60.72" x2="44.88" y2="66" class="solid"></line> <rect x="47.52" y="55.440002" width="5.2800026" height="5.279999" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="60.72" x2="50.160004" y2="66" class="solid"></line> + <line x1="52.800003" y1="58.08" x2="58.08" y2="58.08" class="solid"></line> + <rect x="58.08" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="60.72" x2="60.72" y2="66" class="solid"></line> + <rect x="63.36" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="66" y1="60.72" x2="66" y2="66" class="solid"></line> + <text x="75.240005" y="60.72" >...</text> + <rect x="95.04" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="60.72" x2="97.68" y2="66" class="solid"></line> + <rect x="100.32001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="106.920006" y="60.72" >.</text> + <rect x="110.880005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="116.16" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="60.72" x2="118.8" y2="66" class="solid"></line> + <text x="128.04001" y="60.72" >..</text> + <line x1="145.20001" y1="52.800003" x2="145.20001" y2="55.440002" class="solid"></line> + <rect x="142.56001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="60.72" x2="145.20001" y2="66" class="solid"></line> + <line x1="150.48001" y1="52.800003" x2="150.48001" y2="55.440002" class="solid"></line> + <rect x="147.84001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <text x="1.32" y="71.28001" >.</text> <rect x="5.28" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="10.56" y="66" width="5.2799997" height="5.2800064" class="solid filled" rx="0"></rect> <text x="17.16" y="71.28001" >.....</text> <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <text x="54.120003" y="71.28001" >.</text> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="68.64" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="63.36" x2="81.840004" y2="66" class="solid"></line> + <rect x="79.200005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <text x="101.64001" y="71.28001" >...</text> + <rect x="116.16" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="121.44" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="126.72" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="132" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="137.28" y="66" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <text x="149.16" y="71.28001" >.</text> <g> <path d="M 21.12,5.28 A 2.64,2.64 0,0,0 18.480001,7.92" class="nofill"></path> <line x1="18.480001" y1="7.92" x2="18.480001" y2="13.200001" class="solid"></line> @@ -169,6 +307,18 @@ <path d="M 36.960003,5.28 A 2.64,2.64 0,0,1 39.600002,7.92" class="nofill"></path> <line x1="39.600002" y1="7.92" x2="39.600002" y2="13.200001" class="solid"></line> </g> + <g> + <path d="M 100.32001,5.28 A 2.64,2.64 0,0,1 102.96001,7.92" class="nofill"></path> + <line x1="102.96001" y1="7.92" x2="102.96001" y2="13.200001" class="solid"></line> + </g> + <g> + <path d="M 116.16,5.28 A 2.64,2.64 0,0,0 113.520004,7.92" class="nofill"></path> + <line x1="113.520004" y1="7.92" x2="113.520004" y2="13.200001" class="solid"></line> + </g> + <g> + <path d="M 147.84001,5.28 A 2.64,2.64 0,0,1 150.48001,7.92" class="nofill"></path> + <line x1="150.48001" y1="7.92" x2="150.48001" y2="13.200001" class="solid"></line> + </g> <g> <path d="M 15.84,15.84 A 2.64,2.64 0,0,0 13.200001,18.480001" class="nofill"></path> <line x1="13.200001" y1="18.480001" x2="13.200001" y2="23.76" class="solid"></line> @@ -177,6 +327,10 @@ <path d="M 42.24,15.84 A 2.64,2.64 0,0,1 44.88,18.480001" class="nofill"></path> <line x1="44.88" y1="18.480001" x2="44.88" y2="23.76" class="solid"></line> </g> + <g> + <path d="M 108.240005,15.84 A 5.28,5.28 0,0,0 102.96001,21.12" class="nofill"></path> + <path d="M 108.240005,15.84 A 5.28,5.28 0,0,1 113.520004,21.12" class="nofill"></path> + </g> <g> <path d="M 10.56,26.400002 A 2.64,2.64 0,0,0 7.92,29.04" class="nofill"></path> <line x1="7.92" y1="29.04" x2="7.92" y2="34.32" class="solid"></line> @@ -185,6 +339,28 @@ <path d="M 47.52,26.400002 A 2.64,2.64 0,0,1 50.160004,29.04" class="nofill"></path> <line x1="50.160004" y1="29.04" x2="50.160004" y2="34.32" class="solid"></line> </g> + <g> + <path d="M 55.440002,26.400002 A 5.28,5.28 0,0,0 50.160004,31.68" class="nofill"></path> + <line x1="55.440002" y1="26.400002" x2="58.08" y2="26.400002" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="26.400002" x2="71.28001" y2="26.400002" class="solid"></line> + <path d="M 68.64,26.400002 A 2.64,2.64 0,0,1 71.28001,29.04" class="nofill"></path> + <path d="M 71.28001,26.400002 A 5.28,5.28 0,0,1 76.560005,31.68" class="nofill"></path> + <line x1="71.28001" y1="29.04" x2="71.28001" y2="34.32" class="solid"></line> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="34.32" class="solid"></line> + </g> + <g> + <path d="M 92.4,26.400002 A 5.28,5.28 0,0,0 87.12,31.68" class="nofill"></path> + <line x1="92.4" y1="26.400002" x2="95.04" y2="26.400002" class="solid"></line> + <path d="M 95.04,26.400002 A 2.64,2.64 0,0,0 92.4,29.04" class="nofill"></path> + <line x1="92.4" y1="29.04" x2="92.4" y2="34.32" class="solid"></line> + <line x1="87.12" y1="31.68" x2="87.12" y2="34.32" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="26.400002" x2="108.240005" y2="26.400002" class="solid"></line> + <path d="M 108.240005,26.400002 A 5.28,5.28 0,0,1 113.520004,31.68" class="nofill"></path> + </g> <g> <line x1="15.84" y1="36.960003" x2="18.480001" y2="36.960003" class="solid"></line> <path d="M 15.84,36.960003 A 2.64,2.64 0,0,1 18.480001,39.600002" class="nofill"></path> @@ -199,4 +375,56 @@ <line x1="39.600002" y1="39.600002" x2="39.600002" y2="44.88" class="solid"></line> <line x1="34.32" y1="42.24" x2="34.32" y2="44.88" class="solid"></line> </g> + <g> + <path d="M 55.440002,36.960003 A 5.28,5.28 0,0,0 50.160004,42.24" class="nofill"></path> + <path d="M 55.440002,36.960003 A 5.28,5.28 0,0,1 60.72,42.24" class="nofill"></path> + </g> + <g> + <path d="M 100.32001,36.960003 A 2.64,2.64 0,0,1 102.96001,39.600002" class="nofill"></path> + <line x1="102.96001" y1="39.600002" x2="102.96001" y2="44.88" class="solid"></line> + </g> + <g> + <path d="M 108.240005,36.960003 A 5.28,5.28 0,0,0 102.96001,42.24" class="nofill"></path> + <line x1="108.240005" y1="36.960003" x2="110.880005" y2="36.960003" class="solid"></line> + </g> + <g> + <path d="M 55.440002,47.52 A 5.28,5.28 0,0,0 50.160004,52.800003" class="nofill"></path> + <path d="M 55.440002,47.52 A 5.28,5.28 0,0,1 60.72,52.800003" class="nofill"></path> + </g> + <g> + <path d="M 108.240005,47.52 A 5.28,5.28 0,0,0 102.96001,52.800003" class="nofill"></path> + <path d="M 108.240005,47.52 A 5.28,5.28 0,0,1 113.520004,52.800003" class="nofill"></path> + </g> + <g> + <path d="M 55.440002,58.08 A 5.28,5.28 0,0,0 50.160004,63.36" class="nofill"></path> + <path d="M 55.440002,58.08 A 5.28,5.28 0,0,1 60.72,63.36" class="nofill"></path> + </g> + <g> + <line x1="68.64" y1="58.08" x2="71.28001" y2="58.08" class="solid"></line> + <path d="M 68.64,58.08 A 2.64,2.64 0,0,1 71.28001,60.72" class="nofill"></path> + <path d="M 71.28001,58.08 A 5.28,5.28 0,0,1 76.560005,63.36" class="nofill"></path> + <line x1="71.28001" y1="60.72" x2="71.28001" y2="66" class="solid"></line> + <line x1="76.560005" y1="63.36" x2="76.560005" y2="66" class="solid"></line> + </g> + <g> + <path d="M 92.4,58.08 A 5.28,5.28 0,0,0 87.12,63.36" class="nofill"></path> + <line x1="92.4" y1="58.08" x2="95.04" y2="58.08" class="solid"></line> + <path d="M 95.04,58.08 A 2.64,2.64 0,0,0 92.4,60.72" class="nofill"></path> + <line x1="92.4" y1="60.72" x2="92.4" y2="66" class="solid"></line> + <line x1="87.12" y1="63.36" x2="87.12" y2="66" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="58.08" x2="124.08" y2="58.08" class="solid"></line> + <path d="M 121.44,58.08 A 2.64,2.64 0,0,1 124.08,60.72" class="nofill"></path> + <path d="M 124.08,58.08 A 5.28,5.28 0,0,1 129.36,63.36" class="nofill"></path> + <line x1="124.08" y1="60.72" x2="124.08" y2="66" class="solid"></line> + <line x1="129.36" y1="63.36" x2="129.36" y2="66" class="solid"></line> + </g> + <g> + <path d="M 139.92,58.08 A 5.28,5.28 0,0,0 134.64,63.36" class="nofill"></path> + <line x1="139.92" y1="58.08" x2="142.56001" y2="58.08" class="solid"></line> + <path d="M 142.56001,58.08 A 2.64,2.64 0,0,0 139.92,60.72" class="nofill"></path> + <line x1="139.92" y1="60.72" x2="139.92" y2="66" class="solid"></line> + <line x1="134.64" y1="63.36" x2="134.64" y2="66" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/calgphy2.svg b/static/db/contributed/fill/calgphy2.svg index 36cf50f154f39656709651299bcb9734c565ac46..572915e5782d46edaa997ff27d75bd07e3fffb5b 100644 --- a/static/db/contributed/fill/calgphy2.svg +++ b/static/db/contributed/fill/calgphy2.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="200.64001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="195.36" height="200.64001" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,12 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="95.04" height="200.64001"></rect> + <rect class="backdrop" x="0" y="0" width="195.36" height="200.64001"></rect> <rect x="42.24" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="44.88" y1="18.480001" x2="44.88" y2="23.76" class="solid"></line> <rect x="47.52" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="18.480001" x2="50.160004" y2="23.76" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="93.72" y2="34.32" class="solid"></line> <line x1="31.68" y1="21.12" x2="21.12" y2="42.24" class="solid"></line> <rect x="31.68" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> <rect x="36.960003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> @@ -108,6 +126,8 @@ <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> <rect x="47.52" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="29.04" x2="50.160004" y2="34.32" class="solid"></line> + <rect x="89.76" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="29.04" x2="92.4" y2="34.32" class="solid"></line> <rect x="36.960003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <rect x="42.24" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <polygon points="46.728004,39.600002 46.728004,34.32 43.032,34.32 43.032,39.600002" class="filled"></polygon> @@ -115,29 +135,103 @@ <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="39.600002" x2="50.160004" y2="44.88" class="solid"></line> + <rect x="89.76" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <polygon points="94.24801,39.600002 94.24801,34.32 90.552,34.32 90.552,39.600002" class="filled"></polygon> + <line x1="92.4" y1="39.600002" x2="92.4" y2="44.88" class="solid"></line> + <rect x="95.04" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="39.600002" x2="97.68" y2="44.88" class="solid"></line> <rect x="42.24" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="50.160004" x2="50.160004" y2="55.440002" class="solid"></line> + <rect x="89.76" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="50.160004" x2="92.4" y2="55.440002" class="solid"></line> + <rect x="95.04" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="50.160004" x2="97.68" y2="55.440002" class="solid"></line> <rect x="47.52" y="55.440002" width="5.2800026" height="5.279999" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="60.72" x2="50.160004" y2="66" class="solid"></line> <rect x="52.800003" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="55.440002" y1="60.72" x2="55.440002" y2="66" class="solid"></line> + <rect x="89.76" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="60.72" x2="92.4" y2="66" class="solid"></line> + <rect x="95.04" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="60.72" x2="97.68" y2="66" class="solid"></line> <line x1="36.960003" y1="63.36" x2="26.400002" y2="84.48" class="solid"></line> <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <line x1="55.440002" y1="71.28001" x2="55.440002" y2="76.560005" class="solid"></line> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="71.28001" x2="92.4" y2="76.560005" class="solid"></line> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="71.28001" x2="97.68" y2="76.560005" class="solid"></line> + <line x1="110.880005" y1="63.36" x2="99.00001" y2="87.12" class="solid"></line> + <rect x="110.880005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="71.28001" x2="113.520004" y2="76.560005" class="solid"></line> + <rect x="116.16" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="71.28001" x2="118.8" y2="76.560005" class="solid"></line> + <rect x="121.44" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="71.28001" x2="124.08" y2="76.560005" class="solid"></line> + <line x1="158.40001" y1="63.36" x2="141.24" y2="97.68" class="solid"></line> + <rect x="158.40001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="161.04001" y1="71.28001" x2="161.04001" y2="76.560005" class="solid"></line> + <rect x="163.68001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="166.32" y1="71.28001" x2="166.32" y2="76.560005" class="solid"></line> + <rect x="168.96" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="171.6" y1="71.28001" x2="171.6" y2="76.560005" class="solid"></line> <rect x="52.800003" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="55.440002" y1="81.840004" x2="55.440002" y2="87.12" class="solid"></line> <rect x="58.08" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="60.72" y1="81.840004" x2="60.72" y2="87.12" class="solid"></line> + <rect x="89.76" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="81.840004" x2="92.4" y2="87.12" class="solid"></line> + <rect x="95.04" y="76.560005" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="81.840004" x2="97.68" y2="87.12" class="solid"></line> + <rect x="110.880005" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="116.16" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="81.840004" x2="118.8" y2="87.12" class="solid"></line> + <rect x="121.44" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="81.840004" x2="124.08" y2="87.12" class="solid"></line> + <line x1="142.56001" y1="73.920006" x2="130.68001" y2="97.68" class="solid"></line> + <rect x="158.40001" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="163.68001" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="166.32" y1="81.840004" x2="166.32" y2="87.12" class="solid"></line> + <rect x="168.96" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="171.6" y1="81.840004" x2="171.6" y2="87.12" class="solid"></line> + <line x1="190.08" y1="73.920006" x2="179.52" y2="95.04" class="solid"></line> <line x1="31.68" y1="84.48" x2="21.12" y2="105.600006" class="solid"></line> <rect x="52.800003" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="58.08" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="60.72" y1="92.4" x2="60.72" y2="97.68" class="solid"></line> + <rect x="89.76" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="92.4" x2="92.4" y2="97.68" class="solid"></line> + <rect x="95.04" y="87.12" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <polygon points="99.52801,92.4 99.52801,87.12 95.832,87.12 95.832,92.4" class="filled"></polygon> + <line x1="97.68" y1="92.4" x2="97.68" y2="97.68" class="solid"></line> + <rect x="116.16" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="121.44" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="92.4" x2="124.08" y2="97.68" class="solid"></line> + <rect x="126.72" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="92.4" x2="129.36" y2="97.68" class="solid"></line> + <rect x="163.68001" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="168.96" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="174.24" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="58.08" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <line x1="60.72" y1="102.96001" x2="60.72" y2="108.240005" class="solid"></line> <rect x="63.36" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <line x1="66" y1="102.96001" x2="66" y2="108.240005" class="solid"></line> + <rect x="89.76" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="102.96001" x2="92.4" y2="108.240005" class="solid"></line> + <rect x="95.04" y="97.68" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="102.96001" x2="97.68" y2="108.240005" class="solid"></line> + <rect x="121.44" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="102.96001" x2="124.08" y2="108.240005" class="solid"></line> + <rect x="126.72" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <polygon points="131.20801,102.96001 131.20801,97.68 127.512,97.68 127.512,102.96001" class="filled"></polygon> + <line x1="129.36" y1="102.96001" x2="129.36" y2="108.240005" class="solid"></line> + <rect x="137.28" y="97.68" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> + <polygon points="141.768,102.96001 141.768,97.68 138.072,97.68 138.072,102.96001" class="filled"></polygon> + <line x1="139.92" y1="102.96001" x2="139.92" y2="108.240005" class="solid"></line> + <rect x="142.56001" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="102.96001" x2="145.20001" y2="108.240005" class="solid"></line> <line x1="26.400002" y1="105.600006" x2="15.84" y2="126.72" class="solid"></line> <rect x="26.400002" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="31.68" y="108.240005" width="5.2800026" height="5.279999" class="solid filled" rx="0"></rect> @@ -148,10 +242,34 @@ <rect x="58.08" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="63.36" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="66" y1="113.520004" x2="66" y2="118.8" class="solid"></line> + <rect x="89.76" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="113.520004" x2="92.4" y2="118.8" class="solid"></line> + <rect x="95.04" y="108.240005" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="113.520004" x2="97.68" y2="118.8" class="solid"></line> + <rect x="121.44" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="113.520004" x2="124.08" y2="118.8" class="solid"></line> + <rect x="126.72" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="113.520004" x2="129.36" y2="118.8" class="solid"></line> + <rect x="137.28" y="108.240005" width="5.280014" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="139.92" y1="113.520004" x2="139.92" y2="118.8" class="solid"></line> + <rect x="142.56001" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="113.520004" x2="145.20001" y2="118.8" class="solid"></line> <rect x="63.36" y="118.8" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="66" y1="124.08" x2="66" y2="129.36" class="solid"></line> <rect x="68.64" y="118.8" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> <line x1="71.28001" y1="124.08" x2="71.28001" y2="129.36" class="solid"></line> + <rect x="89.76" y="118.8" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="124.08" x2="92.4" y2="129.36" class="solid"></line> + <rect x="95.04" y="118.8" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="124.08" x2="97.68" y2="129.36" class="solid"></line> + <rect x="121.44" y="118.8" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="124.08" x2="124.08" y2="129.36" class="solid"></line> + <rect x="126.72" y="118.8" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="129.36" y1="124.08" x2="129.36" y2="129.36" class="solid"></line> + <rect x="137.28" y="118.8" width="5.280014" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="139.92" y1="124.08" x2="139.92" y2="129.36" class="solid"></line> + <rect x="142.56001" y="118.8" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="124.08" x2="145.20001" y2="129.36" class="solid"></line> <rect x="15.84" y="129.36" width="5.2800007" height="5.279999" class="solid filled" rx="0"></rect> <polygon points="20.328001,134.64 20.328001,129.36 16.632002,129.36 16.632002,134.64" class="filled"></polygon> <line x1="17.16" y1="134.64" x2="0" y2="168.96" class="solid"></line> @@ -159,6 +277,19 @@ <rect x="63.36" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="68.64" y="129.36" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> <line x1="71.28001" y1="134.64" x2="71.28001" y2="139.92" class="solid"></line> + <rect x="89.76" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="134.64" x2="92.4" y2="139.92" class="solid"></line> + <rect x="95.04" y="129.36" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="134.64" x2="97.68" y2="139.92" class="solid"></line> + <rect x="121.44" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="126.72" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <polygon points="131.20801,134.64 131.20801,129.36 127.512,129.36 127.512,134.64" class="filled"></polygon> + <line x1="128.04001" y1="134.64" x2="114.840004" y2="161.04001" class="solid"></line> + <line x1="129.36" y1="134.64" x2="129.36" y2="139.92" class="solid"></line> + <rect x="137.28" y="129.36" width="5.280014" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="139.92" y1="134.64" x2="139.92" y2="139.92" class="solid"></line> + <rect x="142.56001" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="134.64" x2="145.20001" y2="139.92" class="solid"></line> <rect x="15.84" y="139.92" width="5.2800007" height="5.280014" class="solid filled" rx="0"></rect> <rect x="21.12" y="139.92" width="5.2800007" height="5.280014" class="solid filled" rx="0"></rect> <rect x="26.400002" y="139.92" width="5.279999" height="5.280014" class="solid filled" rx="0"></rect> @@ -169,6 +300,18 @@ <line x1="71.28001" y1="145.20001" x2="71.28001" y2="150.48001" class="solid"></line> <rect x="73.920006" y="139.92" width="5.279999" height="5.280014" class="solid filled" rx="0"></rect> <line x1="76.560005" y1="145.20001" x2="76.560005" y2="150.48001" class="solid"></line> + <rect x="89.76" y="139.92" width="5.279999" height="5.280014" class="solid filled" rx="0"></rect> + <polygon points="94.24801,145.20001 94.24801,139.92 90.552,139.92 90.552,145.20001" class="filled"></polygon> + <line x1="91.08" y1="145.20001" x2="79.200005" y2="168.96" class="solid"></line> + <rect x="95.04" y="139.92" width="5.2800064" height="5.280014" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="145.20001" x2="97.68" y2="150.48001" class="solid"></line> + <rect x="126.72" y="139.92" width="5.279999" height="5.280014" class="solid filled" rx="0"></rect> + <rect x="137.28" y="139.92" width="5.280014" height="5.280014" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="139.92" width="5.279999" height="5.280014" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="145.20001" x2="145.20001" y2="150.48001" class="solid"></line> + <rect x="147.84001" y="139.92" width="5.279999" height="5.280014" class="solid filled" rx="0"></rect> + <line x1="150.48001" y1="145.20001" x2="150.48001" y2="150.48001" class="solid"></line> + <line x1="184.8" y1="137.28" x2="172.92001" y2="161.04001" class="solid"></line> <rect x="26.400002" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="31.68" y="150.48001" width="5.2800026" height="5.279999" class="solid filled" rx="0"></rect> <line x1="34.32" y1="155.76001" x2="34.32" y2="161.04001" class="solid"></line> @@ -178,10 +321,37 @@ <rect x="68.64" y="150.48001" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> <rect x="73.920006" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="76.560005" y1="155.76001" x2="76.560005" y2="161.04001" class="solid"></line> - <line x1="89.76" y1="147.84001" x2="79.200005" y2="168.96" class="solid"></line> + <rect x="95.04" y="150.48001" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="155.76001" x2="102.96001" y2="161.04001" class="solid"></line> + <rect x="105.600006" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="155.76001" x2="108.240005" y2="161.04001" class="solid"></line> + <rect x="110.880005" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="155.76001" x2="113.520004" y2="161.04001" class="solid"></line> + <rect x="142.56001" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="150.48001" y1="155.76001" x2="150.48001" y2="161.04001" class="solid"></line> + <rect x="153.12001" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="155.76001" y1="155.76001" x2="155.76001" y2="161.04001" class="solid"></line> + <rect x="158.40001" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="161.04001" y1="155.76001" x2="161.04001" y2="161.04001" class="solid"></line> + <rect x="163.68001" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="166.32" y1="155.76001" x2="166.32" y2="161.04001" class="solid"></line> + <rect x="168.96" y="150.48001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="171.6" y1="155.76001" x2="171.6" y2="161.04001" class="solid"></line> <rect x="31.68" y="161.04001" width="5.2800026" height="5.279999" class="solid filled" rx="0"></rect> <rect x="36.960003" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="73.920006" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="105.600006" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <polygon points="115.368004,166.32 115.368004,161.04001 111.672005,161.04001 111.672005,166.32" class="filled"></polygon> + <rect x="147.84001" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="153.12001" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="158.40001" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="163.68001" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="168.96" y="161.04001" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <polygon points="173.448,166.32 173.448,161.04001 169.75201,161.04001 169.75201,166.32" class="filled"></polygon> <text x="1.32" y="176.88" >#</text> <rect x="5.28" y="182.16" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <rect x="10.56" y="182.16" width="5.2799997" height="5.279999" class="solid filled" rx="0"></rect> diff --git a/static/db/contributed/fill/doh.svg b/static/db/contributed/fill/doh.svg deleted file mode 100644 index 64d450aefdf21199e54790d6c4c022cba44f991c..0000000000000000000000000000000000000000 --- a/static/db/contributed/fill/doh.svg +++ /dev/null @@ -1,173 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="200.64001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="179.52" height="200.64001"></rect> - <text x="80.520004" y="29.04" >AAA</text> - <text x="75.240005" y="39.600002" >A</text> - <line x1="81.840004" y1="31.68" x2="81.840004" y2="84.48" class="broken"></line> - <line x1="87.12" y1="31.68" x2="87.12" y2="73.920006" class="broken"></line> - <line x1="92.4" y1="31.68" x2="92.4" y2="84.48" class="broken"></line> - <text x="96.36" y="39.600002" >A</text> - <text x="69.96" y="50.160004" >A</text> - <line x1="76.560005" y1="42.24" x2="76.560005" y2="95.04" class="broken"></line> - <line x1="97.68" y1="42.24" x2="97.68" y2="95.04" class="broken"></line> - <text x="101.64001" y="50.160004" >A</text> - <text x="64.68" y="60.72" >A</text> - <line x1="71.28001" y1="52.800003" x2="71.28001" y2="105.600006" class="broken"></line> - <line x1="102.96001" y1="52.800003" x2="102.96001" y2="105.600006" class="broken"></line> - <text x="106.920006" y="60.72" >A</text> - <text x="59.4" y="71.28001" >A</text> - <line x1="66" y1="63.36" x2="66" y2="116.16" class="broken"></line> - <line x1="108.240005" y1="63.36" x2="108.240005" y2="116.16" class="broken"></line> - <text x="112.200005" y="71.28001" >A</text> - <text x="54.120003" y="81.840004" >A</text> - <line x1="60.72" y1="73.920006" x2="60.72" y2="137.28" class="broken"></line> - <text x="85.8" y="81.840004" >A</text> - <line x1="113.520004" y1="73.920006" x2="113.520004" y2="137.28" class="broken"></line> - <text x="117.48" y="81.840004" >A</text> - <text x="48.84" y="92.4" >A</text> - <line x1="55.440002" y1="84.48" x2="55.440002" y2="137.28" class="broken"></line> - <text x="80.520004" y="92.4" >A</text> - <text x="91.08" y="92.4" >A</text> - <line x1="118.8" y1="84.48" x2="118.8" y2="137.28" class="broken"></line> - <text x="122.76" y="92.4" >A</text> - <text x="43.56" y="102.96001" >A</text> - <line x1="50.160004" y1="95.04" x2="50.160004" y2="147.84001" class="broken"></line> - <text x="75.240005" y="102.96001" >A</text> - <text x="96.36" y="102.96001" >A</text> - <line x1="124.08" y1="95.04" x2="124.08" y2="147.84001" class="broken"></line> - <text x="128.04001" y="102.96001" >A</text> - <text x="38.280003" y="113.520004" >A</text> - <line x1="44.88" y1="105.600006" x2="44.88" y2="158.40001" class="broken"></line> - <text x="69.96" y="113.520004" >A</text> - <text x="101.64001" y="113.520004" >A</text> - <line x1="129.36" y1="105.600006" x2="129.36" y2="158.40001" class="broken"></line> - <text x="133.32" y="113.520004" >A</text> - <text x="33" y="124.08" >A</text> - <line x1="39.600002" y1="116.16" x2="39.600002" y2="168.96" class="broken"></line> - <text x="64.68" y="124.08" >AAAAAAAAA</text> - <line x1="134.64" y1="116.16" x2="134.64" y2="168.96" class="broken"></line> - <text x="138.6" y="124.08" >A</text> - <text x="27.720001" y="134.64" >A</text> - <line x1="34.32" y1="126.72" x2="34.32" y2="179.52" class="broken"></line> - <text x="64.68" y="134.64" >:::::::::</text> - <line x1="139.92" y1="126.72" x2="139.92" y2="179.52" class="broken"></line> - <text x="143.88" y="134.64" >A</text> - <text x="22.44" y="145.20001" >A</text> - <line x1="29.04" y1="137.28" x2="29.04" y2="179.52" class="broken"></line> - <text x="54.120003" y="145.20001" >AAAAAAAAAAAAA</text> - <line x1="145.20001" y1="137.28" x2="145.20001" y2="179.52" class="broken"></line> - <text x="149.16" y="145.20001" >A</text> - <text x="17.16" y="155.76001" >A</text> - <line x1="23.76" y1="147.84001" x2="23.76" y2="179.52" class="broken"></line> - <text x="48.84" y="155.76001" >A</text> - <text x="122.76" y="155.76001" >A</text> - <line x1="150.48001" y1="147.84001" x2="150.48001" y2="179.52" class="broken"></line> - <text x="154.44" y="155.76001" >A</text> - <text x="11.88" y="166.32" >A</text> - <line x1="18.480001" y1="158.40001" x2="18.480001" y2="179.52" class="broken"></line> - <text x="43.56" y="166.32" >A</text> - <text x="128.04001" y="166.32" >A</text> - <line x1="155.76001" y1="158.40001" x2="155.76001" y2="179.52" class="broken"></line> - <text x="159.72" y="166.32" >A</text> - <text x="6.6000004" y="176.88" >A:</text> - <text x="38.280003" y="176.88" >A</text> - <text x="133.32" y="176.88" >A</text> - <text x="159.72" y="176.88" >:A</text> - <text x="1.32" y="187.44" >AAAAAAA</text> - <text x="138.6" y="187.44" >AAAAAAA</text> -</svg> diff --git a/static/db/contributed/fill/lockergnome.svg b/static/db/contributed/fill/lockergnome.svg index a42d1be41cf08451f4da4c27c66818dad419e97f..92e9389c3af199f5537a2bbfd977463d4267f2a1 100644 --- a/static/db/contributed/fill/lockergnome.svg +++ b/static/db/contributed/fill/lockergnome.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,17 +112,30 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="89.76" height="42.24"></rect> <line x1="7.92" y1="0" x2="7.92" y2="31.68" class="broken"></line> <line x1="13.200001" y1="0" x2="13.200001" y2="31.68" class="broken"></line> <text x="17.16" y="7.92" >:</text> <line x1="23.76" y1="0" x2="23.76" y2="31.68" class="broken"></line> + <line x1="39.600002" y1="0" x2="39.600002" y2="31.68" class="broken"></line> + <line x1="44.88" y1="0" x2="44.88" y2="31.68" class="broken"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="31.68" class="broken"></line> <text x="17.16" y="18.480001" >,</text> <text x="33" y="18.480001" >|</text> + <text x="48.84" y="18.480001" >'</text> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="31.68" class="solid"></line> <line x1="34.32" y1="21.12" x2="34.32" y2="31.68" class="solid"></line> + <text x="48.84" y="29.04" >:</text> + <text x="64.68" y="18.480001" >.</text> + <line x1="71.28001" y1="10.56" x2="71.28001" y2="31.68" class="broken"></line> + <line x1="76.560005" y1="10.56" x2="76.560005" y2="31.68" class="broken"></line> + <text x="64.68" y="29.04" >`</text> <g> <line x1="26.400002" y1="0" x2="31.68" y2="10.56" class="solid"></line> <line x1="29.04" y1="5.28" x2="29.04" y2="31.68" class="broken"></line> </g> + <g> + <line x1="84.48" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="84.48" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/slide.svg b/static/db/contributed/fill/slide.svg index 002fe57b036194b4aa5eb2067bb2bf19756ac48e..ddf0c1148e8fd606a116c0d1ee85f37f27fbe6fc 100644 --- a/static/db/contributed/fill/slide.svg +++ b/static/db/contributed/fill/slide.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,23 +112,61 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="89.76" height="63.36"></rect> <text x="11.88" y="7.92" >#</text> <line x1="18.480001" y1="0" x2="18.480001" y2="10.56" class="solid"></line> + <rect x="31.68" y="2.64" width="5.2800026" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="34.32" y1="7.92" x2="34.32" y2="13.200001" class="solid"></line> + <rect x="36.960003" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="39.600002" y1="7.92" x2="39.600002" y2="13.200001" class="solid"></line> <rect x="5.28" y="13.200001" width="5.28" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="7.92" y1="18.480001" x2="7.92" y2="23.76" class="solid"></line> <text x="11.88" y="18.480001" >HH</text> <line x1="23.76" y1="10.56" x2="23.76" y2="52.800003" class="solid"></line> + <rect x="31.68" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="34.32" y1="18.480001" x2="34.32" y2="23.76" class="solid"></line> + <rect x="36.960003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="39.600002" y1="18.480001" x2="39.600002" y2="23.76" class="solid"></line> + <rect x="63.36" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="66" y1="18.480001" x2="66" y2="23.76" class="solid"></line> + <text x="69.96" y="18.480001" >HH</text> + <line x1="81.840004" y1="10.56" x2="81.840004" y2="21.12" class="solid"></line> <rect x="0" y="23.76" width="5.28" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="2.64" y1="29.04" x2="2.64" y2="34.32" class="solid"></line> <rect x="5.28" y="23.76" width="5.28" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="7.92" y1="29.04" x2="7.92" y2="34.32" class="solid"></line> <line x1="29.04" y1="21.12" x2="29.04" y2="52.800003" class="solid"></line> + <rect x="31.68" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="34.32" y1="29.04" x2="34.32" y2="34.32" class="solid"></line> + <rect x="36.960003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="39.600002" y1="29.04" x2="39.600002" y2="34.32" class="solid"></line> + <text x="43.56" y="29.04" >H</text> + <line x1="50.160004" y1="21.12" x2="50.160004" y2="31.68" class="solid"></line> + <rect x="58.08" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="29.04" x2="60.72" y2="34.32" class="solid"></line> + <rect x="63.36" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="66" y1="29.04" x2="66" y2="34.32" class="solid"></line> <rect x="0" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="2.64" y1="39.600002" x2="2.64" y2="44.88" class="solid"></line> <rect x="5.28" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="39.600002" x2="7.92" y2="44.88" class="solid"></line> <text x="11.88" y="39.600002" >HH</text> + <rect x="31.68" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="34.32" y1="39.600002" x2="34.32" y2="44.88" class="solid"></line> + <rect x="36.960003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="39.600002" y1="39.600002" x2="39.600002" y2="44.88" class="solid"></line> + <text x="48.84" y="39.600002" >H</text> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="42.24" class="solid"></line> + <rect x="58.08" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="39.600002" x2="66" y2="44.88" class="solid"></line> <rect x="0" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <rect x="5.28" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="31.68" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="36.960003" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="43.56" y="50.160004" >H</text> + <line x1="50.160004" y1="42.24" x2="50.160004" y2="52.800003" class="solid"></line> + <rect x="63.36" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="69.96" y="50.160004" >HH</text> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="52.800003" class="solid"></line> </svg> diff --git a/static/db/contributed/outline/5lineoblique.flf b/static/db/contributed/open/5lineoblique.flf similarity index 100% rename from static/db/contributed/outline/5lineoblique.flf rename to static/db/contributed/open/5lineoblique.flf diff --git a/static/db/contributed/outline/5lineoblique.svg b/static/db/contributed/open/5lineoblique.svg similarity index 56% rename from static/db/contributed/outline/5lineoblique.svg rename to static/db/contributed/open/5lineoblique.svg index 58cc08b637cfe06cb3605267580e385e5c0ae23a..1d221c7404bbf00ff8f5e024f6af8288f34067fa 100644 --- a/static/db/contributed/outline/5lineoblique.svg +++ b/static/db/contributed/open/5lineoblique.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="163.68001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="163.68001" height="84.48"></rect> <line x1="26.400002" y1="21.12" x2="0" y2="73.920006" class="solid"></line> <line x1="15.84" y1="52.800003" x2="5.28" y2="73.920006" class="solid"></line> <line x1="50.160004" y1="21.12" x2="50.160004" y2="73.920006" class="solid"></line> + <path d="M 153.12001,42.24 A 10.56,10.56 0,0,1 153.12001,52.800003" class="nofill"></path> <g> <line x1="31.68" y1="21.12" x2="21.12" y2="42.24" class="solid"></line> <line x1="39.600002" y1="21.12" x2="39.600002" y2="42.24" class="solid"></line> @@ -108,4 +126,31 @@ <line x1="21.12" y1="52.800003" x2="39.600002" y2="52.800003" class="solid"></line> <line x1="39.600002" y1="52.800003" x2="39.600002" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="79.200005" y1="31.68" x2="63.36" y2="63.36" class="solid"></line> + <path d="M 63.36,63.36 A 10.56,10.56 0,0,0 63.36,73.920006" class="nofill"></path> + </g> + <g> + <line x1="84.48" y1="42.24" x2="95.04" y2="42.24" class="solid"></line> + <path d="M 95.04,42.24 A 10.56,10.56 0,0,1 95.04,52.800003" class="nofill"></path> + <line x1="95.04" y1="52.800003" x2="84.48" y2="73.920006" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="68.64" y2="63.36" class="solid"></line> + <path d="M 68.64,63.36 A 10.56,10.56 0,0,0 68.64,73.920006" class="nofill"></path> + <line x1="68.64" y1="73.920006" x2="84.48" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="42.24" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="126.72" y1="42.24" x2="116.16" y2="63.36" class="solid"></line> + <path d="M 142.56001,42.24 A 10.56,10.56 0,0,1 142.56001,52.800003" class="nofill"></path> + <path d="M 116.16,63.36 A 10.56,10.56 0,0,0 116.16,73.920006" class="nofill"></path> + <line x1="116.16" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> + </g> + <g> + <path d="M 105.600006,42.24 A 10.56,10.56 0,0,1 105.600006,52.800003" class="nofill"></path> + <line x1="105.600006" y1="52.800003" x2="95.04" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="42.24" x2="110.880005" y2="63.36" class="solid"></line> + <path d="M 110.880005,63.36 A 10.56,10.56 0,0,0 110.880005,73.920006" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/effect/bigchief.flf b/static/db/contributed/open/bigchief.flf similarity index 100% rename from static/db/contributed/effect/bigchief.flf rename to static/db/contributed/open/bigchief.flf diff --git a/static/db/contributed/effect/bigchief.svg b/static/db/contributed/open/bigchief.svg similarity index 58% rename from static/db/contributed/effect/bigchief.svg rename to static/db/contributed/open/bigchief.svg index 457b3c9ee55a47854142aa0c94ebc5554b04f929..c191217164a5d827cd122bb298b78642ae931e59 100644 --- a/static/db/contributed/effect/bigchief.svg +++ b/static/db/contributed/open/bigchief.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,31 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> - <line x1="0" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="110.880005" height="73.920006"></rect> + <line x1="0" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="68.64" y1="36.960003" x2="89.76" y2="36.960003" class="solid"></line> + <line x1="89.76" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="36.960003" x2="105.600006" y2="36.960003" class="solid"></line> + <text x="101.64001" y="50.160004" >'</text> + <line x1="100.32001" y1="63.36" x2="105.600006" y2="63.36" class="solid"></line> <g> <line x1="21.12" y1="21.12" x2="34.32" y2="21.12" class="solid"></line> <line x1="26.400002" y1="21.12" x2="5.28" y2="63.36" class="solid"></line> <line x1="34.32" y1="21.12" x2="34.32" y2="63.36" class="solid"></line> <line x1="0" y1="36.960003" x2="18.480001" y2="36.960003" class="solid"></line> <line x1="15.84" y1="42.24" x2="34.32" y2="42.24" class="solid"></line> - <line x1="34.32" y1="36.960003" x2="42.24" y2="36.960003" class="solid"></line> <line x1="0" y1="63.36" x2="42.24" y2="63.36" class="solid"></line> + <line x1="63.36" y1="21.12" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="34.32" y1="36.960003" x2="55.440002" y2="36.960003" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <path d="M 68.64,42.24 A 10.56,10.56 0,0,1 68.64,52.800003" class="nofill"></path> + <path d="M 47.52,52.800003 A 10.56,10.56 0,0,0 47.52,63.36" class="nofill"></path> + <line x1="47.52" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <line x1="68.64" y1="52.800003" x2="63.36" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <path d="M 79.200005,52.800003 A 10.56,10.56 0,0,0 79.200005,63.36" class="nofill"></path> + <line x1="79.200005" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/outline/double.flf b/static/db/contributed/open/double.flf similarity index 100% rename from static/db/contributed/outline/double.flf rename to static/db/contributed/open/double.flf diff --git a/static/db/contributed/outline/double.svg b/static/db/contributed/open/double.svg similarity index 58% rename from static/db/contributed/outline/double.svg rename to static/db/contributed/open/double.svg index 72f4ae1beb88aa4a2d4252e2a004770b21ff00a3..869c42174dbedd81fc0832afb5049f05739fca1f 100644 --- a/static/db/contributed/outline/double.svg +++ b/static/db/contributed/open/double.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,13 +112,17 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="52.800003"></rect> <text x="1.32" y="29.04" >|</text> <line x1="10.56" y1="25.080002" x2="15.84" y2="25.080002" class="solid"></line> <line x1="10.56" y1="27.720001" x2="15.84" y2="27.720001" class="solid"></line> - <text x="22.44" y="29.04" >|</text> + <text x="22.44" y="29.04" >||</text> + <line x1="36.960003" y1="25.080002" x2="42.24" y2="25.080002" class="solid"></line> + <line x1="36.960003" y1="27.720001" x2="42.24" y2="27.720001" class="solid"></line> <line x1="2.64" y1="31.68" x2="2.64" y2="42.24" class="solid"></line> <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> + <line x1="29.04" y1="31.68" x2="29.04" y2="42.24" class="solid"></line> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,1 47.52,42.24" class="nofill"></path> <g> <line x1="5.28" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="5.28" y1="10.56" x2="2.64" y2="15.84" class="solid"></line> @@ -113,4 +134,24 @@ <line x1="21.12" y1="10.56" x2="23.76" y2="15.84" class="solid"></line> <line x1="23.76" y1="15.84" x2="23.76" y2="21.12" class="solid"></line> </g> + <g> + <line x1="26.400002" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="21.12" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="42.24" class="solid"></line> + <path d="M 47.52,10.56 A 10.56,10.56 0,0,1 47.52,21.12" class="nofill"></path> + <line x1="34.32" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> + <path d="M 42.24,10.56 A 10.56,10.56 0,0,1 42.24,21.12" class="nofill"></path> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,1 42.24,31.68" class="nofill"></path> + <path d="M 42.24,31.68 A 10.56,10.56 0,0,1 42.24,42.24" class="nofill"></path> + </g> + <g> + <line x1="58.08" y1="10.56" x2="73.920006" y2="10.56" class="solid"></line> + <line x1="58.08" y1="10.56" x2="52.800003" y2="21.12" class="solid"></line> + <line x1="63.36" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,0 52.800003,31.68" class="nofill"></path> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + <line x1="58.08" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + <line x1="63.36" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/outline/eftifont.flf b/static/db/contributed/open/eftifont.flf similarity index 100% rename from static/db/contributed/outline/eftifont.flf rename to static/db/contributed/open/eftifont.flf diff --git a/static/db/contributed/outline/eftifont.svg b/static/db/contributed/open/eftifont.svg similarity index 71% rename from static/db/contributed/outline/eftifont.svg rename to static/db/contributed/open/eftifont.svg index 19eabd757775b3232989f4bef2cc4f3adde31ff5..e86335b7e7d4c39bcf9abc19c0a19f90483ba36d 100644 --- a/static/db/contributed/outline/eftifont.svg +++ b/static/db/contributed/open/eftifont.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,27 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="52.800003" height="52.800003"></rect> + <line x1="34.32" y1="10.56" x2="34.32" y2="26.400002" class="solid end_marked_open_circle"></line> <text x="1.32" y="29.04" >|</text> <text x="11.88" y="29.04" >o</text> <text x="22.44" y="29.04" >|</text> + <text x="38.280003" y="29.04" >Y</text> <text x="11.88" y="39.600002" >n</text> <g> <line x1="10.56" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> <line x1="15.84" y1="10.56" x2="21.12" y2="21.12" class="solid"></line> </g> + <g> + <line x1="29.04" y1="10.56" x2="29.04" y2="42.24" class="solid"></line> + <line x1="29.04" y1="42.24" x2="39.600002" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="42.24" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + <line x1="47.52" y1="21.12" x2="42.24" y2="31.68" class="solid"></line> + <line x1="42.24" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> + </g> <g> <line x1="2.64" y1="31.68" x2="2.64" y2="42.24" class="solid"></line> <line x1="2.64" y1="42.24" x2="10.56" y2="42.24" class="solid"></line> diff --git a/static/db/contributed/fill/eftipiti.flf b/static/db/contributed/open/eftipiti.flf similarity index 100% rename from static/db/contributed/fill/eftipiti.flf rename to static/db/contributed/open/eftipiti.flf diff --git a/static/db/contributed/fill/eftipiti.svg b/static/db/contributed/open/eftipiti.svg similarity index 81% rename from static/db/contributed/fill/eftipiti.svg rename to static/db/contributed/open/eftipiti.svg index 9d38b3af77c52afb0b4f5153983ee5bb546ed88c..54a6307e6545d0fce91c4edfdd598ec35f05bf2f 100644 --- a/static/db/contributed/fill/eftipiti.svg +++ b/static/db/contributed/open/eftipiti.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,8 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="31.68" height="31.68"></rect> + <text x="17.16" y="18.480001" >bc</text> <g> <line x1="5.28" y1="10.56" x2="10.56" y2="10.56" class="solid"></line> <line x1="5.28" y1="10.56" x2="0" y2="21.12" class="solid"></line> diff --git a/static/db/contributed/outline/eftitalic.flf b/static/db/contributed/open/eftitalic.flf similarity index 100% rename from static/db/contributed/outline/eftitalic.flf rename to static/db/contributed/open/eftitalic.flf diff --git a/static/db/contributed/outline/eftitalic.svg b/static/db/contributed/open/eftitalic.svg similarity index 70% rename from static/db/contributed/outline/eftitalic.svg rename to static/db/contributed/open/eftitalic.svg index ca2c5003dc5461af49c3cf21f54457c285581abf..4b3914203cc8bd9386bdf7ebafe5d4bc12e5bfd1 100644 --- a/static/db/contributed/outline/eftitalic.svg +++ b/static/db/contributed/open/eftitalic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,15 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="73.920006" height="52.800003"></rect> <text x="17.16" y="18.480001" >'</text> + <text x="43.56" y="18.480001" >7</text> + <line x1="58.08" y1="21.12" x2="68.64" y2="21.12" class="solid"></line> <text x="17.16" y="29.04" >o</text> + <text x="38.280003" y="29.04" >o</text> + <text x="48.84" y="29.04" >,','</text> <text x="11.88" y="39.600002" >n</text> + <text x="38.280003" y="39.600002" >,'</text> <g> <line x1="21.12" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <path d="M 21.12,10.56 A 21.12,21.12 0,0,0 10.56,21.12" class="nofill"></path> @@ -108,4 +130,13 @@ <line x1="0" y1="42.24" x2="10.56" y2="42.24" class="solid"></line> <line x1="15.84" y1="42.24" x2="21.12" y2="42.24" class="solid"></line> </g> + <g> + <line x1="42.24" y1="10.56" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="26.400002" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="42.24" y1="21.12" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="58.08" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/outline/eftiwater.flf b/static/db/contributed/open/eftiwater.flf similarity index 100% rename from static/db/contributed/outline/eftiwater.flf rename to static/db/contributed/open/eftiwater.flf diff --git a/static/db/contributed/outline/eftiwater.svg b/static/db/contributed/open/eftiwater.svg similarity index 65% rename from static/db/contributed/outline/eftiwater.svg rename to static/db/contributed/open/eftiwater.svg index d2ec12e05c80119f2adb56b7ce3345bd64875d0f..3e6e1785ff55615a72b382922e961f6e9564a543 100644 --- a/static/db/contributed/outline/eftiwater.svg +++ b/static/db/contributed/open/eftiwater.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="68.64" height="42.24"></rect> <text x="17.16" y="18.480001" >`</text> <path d="M 10.56,21.12 A 10.56,10.56 0,0,0 10.56,31.68" class="nofill"></path> <g> @@ -106,4 +123,21 @@ <path d="M 5.28,21.12 A 10.56,10.56 0,0,0 5.28,31.68" class="nofill"></path> <path d="M 21.12,21.12 A 10.56,10.56 0,0,0 21.12,31.68" class="nofill"></path> </g> + <g> + <line x1="31.68" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> + <path d="M 31.68,10.56 A 10.56,10.56 0,0,1 31.68,21.12" class="nofill"></path> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,1 36.960003,21.12" class="nofill"></path> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,0 31.68,31.68" class="nofill"></path> + <path d="M 36.960003,21.12 A 10.56,10.56 0,0,0 36.960003,31.68" class="nofill"></path> + <line x1="36.960003" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,1 42.24,31.68" class="nofill"></path> + </g> + <g> + <line x1="52.800003" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,0 52.800003,31.68" class="nofill"></path> + </g> + <g> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/outline/fender.flf b/static/db/contributed/open/fender.flf similarity index 100% rename from static/db/contributed/outline/fender.flf rename to static/db/contributed/open/fender.flf diff --git a/static/db/contributed/outline/fender.svg b/static/db/contributed/open/fender.svg similarity index 65% rename from static/db/contributed/outline/fender.svg rename to static/db/contributed/open/fender.svg index 6e457fa9cc131bad026b9b54d1052faf4b416941..1499683a2d9ff85529ce96e9ec2f5749f641fd36 100644 --- a/static/db/contributed/outline/fender.svg +++ b/static/db/contributed/open/fender.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,12 +112,26 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="73.920006" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="63.36"></rect> <line x1="31.68" y1="0" x2="5.28" y2="52.800003" class="solid"></line> <text x="27.720001" y="29.04" >...</text> <line x1="36.960003" y1="0" x2="63.36" y2="52.800003" class="solid"></line> <text x="1.32" y="50.160004" >.</text> <text x="64.68" y="50.160004" >.</text> + <text x="75.240005" y="7.92" >'</text> + <line x1="81.840004" y1="0" x2="81.840004" y2="52.800003" class="solid"></line> + <line x1="87.12" y1="0" x2="87.12" y2="52.800003" class="solid"></line> + <text x="91.08" y="29.04" >''</text> + <line x1="102.96001" y1="21.12" x2="102.96001" y2="52.800003" class="solid"></line> + <text x="106.920006" y="29.04" >,</text> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="44.88" class="solid"></line> + <text x="75.240005" y="50.160004" >.</text> + <text x="91.08" y="50.160004" >..</text> + <line x1="118.8" y1="29.04" x2="118.8" y2="42.24" class="solid"></line> + <line x1="124.08" y1="21.12" x2="124.08" y2="52.800003" class="solid"></line> + <text x="128.04001" y="29.04" >'',</text> + <text x="117.48" y="50.160004" >`</text> + <text x="128.04001" y="50.160004" >..'</text> <g> <line x1="34.32" y1="5.28" x2="10.56" y2="52.800003" class="solid"></line> <line x1="34.32" y1="5.28" x2="58.08" y2="52.800003" class="solid"></line> diff --git a/static/db/contributed/outline/fuzzy.flf b/static/db/contributed/open/fuzzy.flf similarity index 100% rename from static/db/contributed/outline/fuzzy.flf rename to static/db/contributed/open/fuzzy.flf diff --git a/static/db/contributed/outline/fuzzy.svg b/static/db/contributed/open/fuzzy.svg similarity index 57% rename from static/db/contributed/outline/fuzzy.svg rename to static/db/contributed/open/fuzzy.svg index d6767b0fcfdd743aaee3a5e664d81cb690c3dea6..64ae90ba4c79e222158fb57dbcc4214a8b70e53c 100644 --- a/static/db/contributed/outline/fuzzy.svg +++ b/static/db/contributed/open/fuzzy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,19 +112,48 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="63.36"></rect> <text x="11.88" y="18.480001" >.;</text> + <text x="43.56" y="18.480001" >:</text> <text x="11.88" y="39.600002" >:</text> <line x1="18.480001" y1="31.68" x2="18.480001" y2="52.800003" class="broken"></line> + <text x="43.56" y="39.600002" >.;</text> + <text x="59.4" y="39.600002" >:'</text> + <text x="80.520004" y="39.600002" >..'</text> <line x1="5.28" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> <text x="11.88" y="50.160004" >;</text> <line x1="21.12" y1="52.800003" x2="26.400002" y2="52.800003" class="solid"></line> - <text x="27.720001" y="50.160004" >;</text> + <text x="27.720001" y="50.160004" >;`.</text> + <line x1="42.24" y1="52.800003" x2="52.800003" y2="52.800003" class="solid"></line> + <text x="54.120003" y="50.160004" >.</text> + <line x1="60.72" y1="42.24" x2="60.72" y2="44.88" class="solid"></line> + <text x="64.68" y="50.160004" >`.</text> + <line x1="73.920006" y1="52.800003" x2="84.48" y2="52.800003" class="solid"></line> + <text x="85.8" y="50.160004" >.'</text> <g> <path d="M 7.92,5.28 A 5.28,5.28 0,0,0 2.64,10.56" class="nofill"></path> <line x1="7.92" y1="5.28" x2="23.76" y2="5.28" class="solid"></line> <path d="M 23.76,5.28 A 5.28,5.28 0,0,1 29.04,10.56" class="nofill"></path> + <path d="M 34.32,5.28 A 5.28,5.28 0,0,0 29.04,10.56" class="nofill"></path> + <line x1="34.32" y1="5.28" x2="42.24" y2="5.28" class="solid"></line> + <path d="M 42.24,5.28 A 2.64,2.64 0,0,1 44.88,7.92" class="nofill"></path> + <line x1="44.88" y1="7.92" x2="44.88" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="52.800003" class="broken"></line> <line x1="29.04" y1="10.56" x2="29.04" y2="42.24" class="broken"></line> </g> + <g> + <path d="M 36.960003,5.28 A 2.64,2.64 0,0,0 34.32,7.92" class="nofill"></path> + <line x1="34.32" y1="7.92" x2="34.32" y2="34.32" class="broken"></line> + </g> + <g> + <line x1="44.88" y1="21.12" x2="44.88" y2="23.76" class="solid"></line> + <path d="M 44.88,23.76 A 2.64,2.64 0,0,0 47.52,26.400002" class="nofill"></path> + <line x1="47.52" y1="26.400002" x2="55.440002" y2="26.400002" class="solid"></line> + <path d="M 55.440002,26.400002 A 5.28,5.28 0,0,1 60.72,31.68" class="nofill"></path> + </g> + <g> + <path d="M 71.28001,26.400002 A 5.28,5.28 0,0,0 66,31.68" class="nofill"></path> + <line x1="71.28001" y1="26.400002" x2="87.12" y2="26.400002" class="solid"></line> + <path d="M 87.12,26.400002 A 5.28,5.28 0,0,1 92.4,31.68" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/effect/goofy.flf b/static/db/contributed/open/goofy.flf similarity index 100% rename from static/db/contributed/effect/goofy.flf rename to static/db/contributed/open/goofy.flf diff --git a/static/db/contributed/effect/goofy.svg b/static/db/contributed/open/goofy.svg similarity index 57% rename from static/db/contributed/effect/goofy.svg rename to static/db/contributed/open/goofy.svg index 12c6eabfb9379d3446afb7bfc512db4c41185a59..ac00b545307126c926287ae30210e00e958a53bd 100644 --- a/static/db/contributed/effect/goofy.svg +++ b/static/db/contributed/open/goofy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,14 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="73.920006"></rect> <text x="1.32" y="50.160004" >|</text> <line x1="2.64" y1="52.800003" x2="2.64" y2="63.36" class="solid"></line> + <text x="64.68" y="29.04" >|</text> <text x="48.84" y="50.160004" >|</text> + <text x="106.920006" y="29.04" >|</text> + <text x="91.08" y="39.600002" ><</text> + <line x1="142.56001" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> <g> <line x1="0" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="21.12" y1="10.56" x2="5.28" y2="42.24" class="solid"></line> @@ -106,11 +127,39 @@ <g> <line x1="31.68" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="47.52" y2="42.24" class="solid"></line> + <line x1="58.08" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> </g> <g> + <line x1="66" y1="31.68" x2="66" y2="47.52" class="solid"></line> + <line x1="66" y1="47.52" x2="58.08" y2="63.36" class="solid"></line> <line x1="50.160004" y1="52.800003" x2="50.160004" y2="63.36" class="solid"></line> <line x1="50.160004" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> </g> + <g> + <line x1="89.76" y1="10.56" x2="116.16" y2="10.56" class="solid"></line> + <line x1="89.76" y1="10.56" x2="95.04" y2="21.12" class="solid"></line> + <line x1="116.16" y1="10.56" x2="110.880005" y2="21.12" class="solid"></line> + <path d="M 95.04,21.12 A 10.56,10.56 0,0,1 95.04,31.68" class="nofill"></path> + </g> + <g> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="47.52" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="116.16" y2="63.36" class="solid"></line> + <path d="M 95.04,42.24 A 10.56,10.56 0,0,1 95.04,52.800003" class="nofill"></path> + <line x1="95.04" y1="52.800003" x2="89.76" y2="63.36" class="solid"></line> + <line x1="89.76" y1="63.36" x2="116.16" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="10.56" x2="147.84001" y2="10.56" class="solid"></line> + <line x1="126.72" y1="21.12" x2="137.28" y2="21.12" class="solid"></line> + <path d="M 137.28,10.56 A 10.56,10.56 0,0,1 137.28,21.12" class="nofill"></path> + <line x1="126.72" y1="21.12" x2="121.44" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="118.8" y1="31.68" x2="118.8" y2="36.960003" class="solid"></line> + <line x1="118.8" y1="36.960003" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="137.28" y2="52.800003" class="solid"></line> + <path d="M 137.28,52.800003 A 10.56,10.56 0,0,1 137.28,63.36" class="nofill"></path> + </g> <g> <path d="M 26.400002,31.68 A 10.56,10.56 0,0,0 26.400002,42.24" class="nofill"></path> <path d="M 26.400002,31.68 A 10.56,10.56 0,0,1 26.400002,42.24" class="nofill"></path> diff --git a/static/db/contributed/outline/gothic.flf b/static/db/contributed/open/gothic.flf similarity index 100% rename from static/db/contributed/outline/gothic.flf rename to static/db/contributed/open/gothic.flf diff --git a/static/db/contributed/outline/gothic.svg b/static/db/contributed/open/gothic.svg similarity index 63% rename from static/db/contributed/outline/gothic.svg rename to static/db/contributed/open/gothic.svg index c350c54884776b18179dbbe0bf9765f42eb46e00..9f147a7a5246a096495ebef34ea8464812dce1a4 100644 --- a/static/db/contributed/outline/gothic.svg +++ b/static/db/contributed/open/gothic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="105.600006" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="105.600006" height="84.48"></rect> <line x1="10.56" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="5.28" y1="15.84" x2="10.56" y2="15.84" class="solid"></line> <line x1="26.400002" y1="15.84" x2="31.68" y2="15.84" class="solid"></line> @@ -104,6 +121,19 @@ <line x1="15.84" y1="48.84" x2="26.400002" y2="48.84" class="solid"></line> <line x1="15.84" y1="68.64" x2="21.12" y2="68.64" class="solid"></line> <text x="38.280003" y="71.28001" >,</text> + <text x="48.84" y="18.480001" >,,</text> + <line x1="55.440002" y1="21.12" x2="55.440002" y2="42.24" class="solid"></line> + <line x1="63.36" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + <text x="69.96" y="39.600002" >,</text> + <text x="54.120003" y="50.160004" >|</text> + <line x1="71.28001" y1="42.24" x2="71.28001" y2="55.440002" class="solid"></line> + <line x1="55.440002" y1="52.800003" x2="55.440002" y2="63.36" class="solid"></line> + <line x1="47.52" y1="63.36" x2="52.800003" y2="73.920006" class="solid"></line> + <line x1="89.76" y1="36.960003" x2="95.04" y2="36.960003" class="solid"></line> + <line x1="95.04" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="84.48" y2="73.920006" class="solid"></line> + <text x="91.08" y="71.28001" >,</text> + <line x1="100.32001" y1="63.36" x2="95.04" y2="73.920006" class="solid"></line> <g> <line x1="29.04" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> <line x1="29.04" y1="21.12" x2="29.04" y2="58.08" class="solid"></line> @@ -123,4 +153,16 @@ <line x1="21.12" y1="63.36" x2="29.04" y2="63.36" class="solid"></line> <line x1="26.400002" y1="63.36" x2="31.68" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="50.160004" y1="21.12" x2="50.160004" y2="58.08" class="solid"></line> + <line x1="50.160004" y1="58.08" x2="58.08" y2="73.920006" class="solid"></line> + <line x1="66" y1="31.68" x2="66" y2="58.08" class="solid"></line> + <line x1="66" y1="58.08" x2="58.08" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="81.840004" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="58.08" class="solid"></line> + <line x1="87.12" y1="42.24" x2="87.12" y2="63.36" class="solid"></line> + <line x1="81.840004" y1="58.08" x2="89.76" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/outline/kban.flf b/static/db/contributed/open/kban.flf similarity index 100% rename from static/db/contributed/outline/kban.flf rename to static/db/contributed/open/kban.flf diff --git a/static/db/contributed/outline/kban.svg b/static/db/contributed/open/kban.svg similarity index 68% rename from static/db/contributed/outline/kban.svg rename to static/db/contributed/open/kban.svg index 7f460cfe41ddff4940846f36b4ee6102037cd566..6fc94b429b5f5da135dc8595478275d0d57e6a7e 100644 --- a/static/db/contributed/outline/kban.svg +++ b/static/db/contributed/open/kban.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="142.56001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="142.56001" height="63.36"></rect> <line x1="23.76" y1="0" x2="23.76" y2="21.12" class="solid"></line> <line x1="18.480001" y1="10.56" x2="18.480001" y2="21.12" class="solid"></line> <line x1="29.04" y1="10.56" x2="29.04" y2="34.32" class="solid"></line> @@ -108,4 +125,18 @@ <text x="11.88" y="50.160004" >.</text> <text x="27.720001" y="50.160004" >.</text> <text x="43.56" y="50.160004" >.</text> + <text x="54.120003" y="7.92" >'</text> + <line x1="60.72" y1="0" x2="60.72" y2="44.88" class="solid"></line> + <line x1="66" y1="0" x2="66" y2="52.800003" class="solid"></line> + <text x="75.240005" y="18.480001" >..</text> + <line x1="87.12" y1="18.480001" x2="87.12" y2="31.68" class="solid"></line> + <text x="69.96" y="29.04" >'</text> + <line x1="92.4" y1="21.12" x2="92.4" y2="42.24" class="solid"></line> + <text x="69.96" y="50.160004" >...'</text> + <text x="112.200005" y="18.480001" >....</text> + <line x1="102.96001" y1="29.04" x2="102.96001" y2="42.24" class="solid"></line> + <line x1="108.240005" y1="21.12" x2="108.240005" y2="44.88" class="solid"></line> + <text x="128.04001" y="29.04" >''</text> + <line x1="113.520004" y1="42.24" x2="113.520004" y2="52.800003" class="solid"></line> + <text x="117.48" y="50.160004" >...'</text> </svg> diff --git a/static/db/contributed/outline/madrid.flf b/static/db/contributed/open/madrid.flf similarity index 100% rename from static/db/contributed/outline/madrid.flf rename to static/db/contributed/open/madrid.flf diff --git a/static/db/contributed/outline/madrid.svg b/static/db/contributed/open/madrid.svg similarity index 63% rename from static/db/contributed/outline/madrid.svg rename to static/db/contributed/open/madrid.svg index 8cc35a606c25c4b642a07afdbab971b09462e919..ee5f1e0f7891d944c2314f6cdf2d10a209968cb1 100644 --- a/static/db/contributed/outline/madrid.svg +++ b/static/db/contributed/open/madrid.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,13 +112,23 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="42.24"></rect> <line x1="5.28" y1="3.96" x2="10.56" y2="3.96" class="solid"></line> <line x1="5.28" y1="6.6000004" x2="10.56" y2="6.6000004" class="solid"></line> <line x1="5.28" y1="14.52" x2="10.56" y2="14.52" class="solid"></line> <line x1="5.28" y1="17.16" x2="10.56" y2="17.16" class="solid"></line> <line x1="0" y1="21.12" x2="5.28" y2="31.68" class="solid"></line> <line x1="15.84" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> + <line x1="23.76" y1="0" x2="23.76" y2="31.68" class="solid"></line> + <line x1="26.400002" y1="14.52" x2="31.68" y2="14.52" class="solid"></line> + <line x1="26.400002" y1="17.16" x2="31.68" y2="17.16" class="solid"></line> + <line x1="26.400002" y1="25.080002" x2="31.68" y2="25.080002" class="solid"></line> + <line x1="26.400002" y1="27.720001" x2="31.68" y2="27.720001" class="solid"></line> + <line x1="47.52" y1="14.52" x2="52.800003" y2="14.52" class="solid"></line> + <line x1="47.52" y1="17.16" x2="52.800003" y2="17.16" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="31.68" class="broken"></line> + <line x1="47.52" y1="25.080002" x2="52.800003" y2="25.080002" class="solid"></line> + <line x1="47.52" y1="27.720001" x2="52.800003" y2="27.720001" class="solid"></line> <g> <line x1="5.28" y1="0" x2="2.64" y2="5.28" class="solid"></line> <line x1="2.64" y1="5.28" x2="2.64" y2="21.12" class="solid"></line> @@ -110,4 +137,12 @@ <line x1="10.56" y1="0" x2="13.200001" y2="5.28" class="solid"></line> <line x1="13.200001" y1="5.28" x2="13.200001" y2="21.12" class="solid"></line> </g> + <g> + <line x1="31.68" y1="10.56" x2="36.960003" y2="21.12" class="solid"></line> + <line x1="36.960003" y1="21.12" x2="31.68" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="47.52" y1="10.56" x2="42.24" y2="21.12" class="solid"></line> + <line x1="42.24" y1="21.12" x2="47.52" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/effect/speed.flf b/static/db/contributed/open/speed.flf similarity index 100% rename from static/db/contributed/effect/speed.flf rename to static/db/contributed/open/speed.flf diff --git a/static/db/contributed/effect/speed.svg b/static/db/contributed/open/speed.svg similarity index 55% rename from static/db/contributed/effect/speed.svg rename to static/db/contributed/open/speed.svg index dfae48e0297eb8840a4c8299259b5d428e6b9458..1287228d4c0fbd0c8c55b1d8d56b3397ea036d62 100644 --- a/static/db/contributed/effect/speed.svg +++ b/static/db/contributed/open/speed.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,20 +112,44 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="63.36"></rect> <line x1="0" y1="21.12" x2="15.84" y2="21.12" class="solid"></line> <line x1="0" y1="31.68" x2="10.56" y2="31.68" class="solid"></line> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <line x1="29.04" y1="21.12" x2="29.04" y2="31.68" class="solid"></line> + <text x="48.84" y="50.160004" >.</text> + <g> + <line x1="0" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="42.24" class="solid"></line> + <line x1="39.600002" y1="21.12" x2="52.800003" y2="21.12" class="solid"></line> + <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <line x1="63.36" y1="21.12" x2="110.880005" y2="21.12" class="solid"></line> + <line x1="39.600002" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="52.800003" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="21.12" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="68.64" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + </g> <g> - <line x1="0" y1="10.56" x2="39.600002" y2="10.56" class="solid"></line> - <line x1="39.600002" y1="10.56" x2="39.600002" y2="52.800003" class="solid"></line> <line x1="0" y1="42.24" x2="5.28" y2="42.24" class="solid"></line> <line x1="5.28" y1="42.24" x2="0" y2="52.800003" class="solid"></line> <line x1="0" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <line x1="15.84" y1="42.24" x2="10.56" y2="52.800003" class="solid"></line> <line x1="29.04" y1="42.24" x2="29.04" y2="52.800003" class="solid"></line> - <line x1="29.04" y1="52.800003" x2="39.600002" y2="52.800003" class="solid"></line> + <line x1="29.04" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="42.24" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/effect/tombstone.flf b/static/db/contributed/open/tombstone.flf similarity index 100% rename from static/db/contributed/effect/tombstone.flf rename to static/db/contributed/open/tombstone.flf diff --git a/static/db/contributed/effect/tombstone.svg b/static/db/contributed/open/tombstone.svg similarity index 63% rename from static/db/contributed/effect/tombstone.svg rename to static/db/contributed/open/tombstone.svg index 79bc1013f985196da7a1694235542ba447937e47..10eb4c7301ae443fcd5ad3dfacd21e1b947ea33c 100644 --- a/static/db/contributed/effect/tombstone.svg +++ b/static/db/contributed/open/tombstone.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,16 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="68.64" height="52.800003"></rect> <text x="17.16" y="7.92" >,</text> <line x1="5.28" y1="36.960003" x2="10.56" y2="36.960003" class="broken"></line> <line x1="15.84" y1="36.960003" x2="21.12" y2="36.960003" class="broken"></line> + <text x="38.280003" y="7.92" >,</text> + <line x1="26.400002" y1="36.960003" x2="31.68" y2="36.960003" class="broken"></line> + <text x="59.4" y="7.92" >,</text> + <text x="59.4" y="18.480001" >`</text> + <text x="59.4" y="29.04" >,</text> + <line x1="52.800003" y1="36.960003" x2="58.08" y2="36.960003" class="broken"></line> <g> <line x1="10.56" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="7.92" y2="15.84" class="solid"></line> @@ -107,4 +130,17 @@ <line x1="18.480001" y1="15.84" x2="18.480001" y2="31.68" class="solid"></line> <line x1="7.92" y1="26.400002" x2="18.480001" y2="26.400002" class="broken"></line> </g> + <g> + <line x1="26.400002" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="31.68" class="solid"></line> + <line x1="29.04" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,1 36.960003,21.12" class="nofill"></path> + <line x1="29.04" y1="31.68" x2="36.960003" y2="31.68" class="solid"></line> + <path d="M 36.960003,21.12 A 10.56,10.56 0,0,1 36.960003,31.68" class="nofill"></path> + </g> + <g> + <line x1="52.800003" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="52.800003" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> + <line x1="47.52" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/3-d.flf b/static/db/contributed/pattern/3-d.flf similarity index 100% rename from static/db/contributed/fill/3-d.flf rename to static/db/contributed/pattern/3-d.flf diff --git a/static/db/contributed/pattern/3-d.svg b/static/db/contributed/pattern/3-d.svg new file mode 100644 index 0000000000000000000000000000000000000000..08c910b21ac9829f8f4390c4c02c7ddeb256364c --- /dev/null +++ b/static/db/contributed/pattern/3-d.svg @@ -0,0 +1,224 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="147.84001" height="95.04"></rect> + <line x1="29.04" y1="5.28" x2="34.32" y2="5.28" class="solid"></line> + <line x1="66" y1="5.28" x2="66" y2="5.28" class="solid end_marked_circle"></line> + <line x1="58.08" y1="21.12" x2="66" y2="15.84" class="solid end_marked_circle"></line> + <line x1="68.64" y1="5.28" x2="71.28001" y2="5.28" class="solid"></line> + <line x1="23.76" y1="15.84" x2="34.32" y2="15.84" class="solid end_marked_circle"></line> + <line x1="31.68" y1="15.84" x2="39.600002" y2="15.84" class="solid"></line> + <line x1="31.68" y1="21.12" x2="39.600002" y2="15.84" class="solid end_marked_circle"></line> + <line x1="31.68" y1="31.68" x2="39.600002" y2="26.400002" class="solid end_marked_circle"></line> + <line x1="66" y1="15.84" x2="71.28001" y2="15.84" class="solid"></line> + <line x1="58.08" y1="31.68" x2="66" y2="26.400002" class="solid end_marked_circle"></line> + <line x1="18.480001" y1="26.400002" x2="23.76" y2="26.400002" class="solid"></line> + <line x1="31.68" y1="21.12" x2="26.400002" y2="31.68" class="solid"></line> + <line x1="39.600002" y1="26.400002" x2="44.88" y2="26.400002" class="solid"></line> + <line x1="36.960003" y1="31.68" x2="44.88" y2="26.400002" class="solid end_marked_circle"></line> + <line x1="43.56" y1="29.04" x2="35.640003" y2="44.88" class="solid"></line> + <line x1="66" y1="26.400002" x2="71.28001" y2="26.400002" class="solid"></line> + <line x1="58.08" y1="42.24" x2="66" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="113.520004" y1="26.400002" x2="124.08" y2="26.400002" class="solid end_marked_circle"></line> + <line x1="121.44" y1="26.400002" x2="134.64" y2="26.400002" class="solid"></line> + <line x1="121.44" y1="31.68" x2="129.36" y2="26.400002" class="solid end_marked_circle"></line> + <line x1="126.72" y1="31.68" x2="134.64" y2="26.400002" class="solid end_marked_circle"></line> + <line x1="126.72" y1="42.24" x2="134.64" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="13.200001" y1="36.960003" x2="18.480001" y2="36.960003" class="solid"></line> + <line x1="36.960003" y1="31.68" x2="30.36" y2="44.88" class="solid"></line> + <line x1="44.88" y1="36.960003" x2="50.160004" y2="36.960003" class="solid"></line> + <line x1="66" y1="36.960003" x2="81.840004" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="58.08" y1="52.800003" x2="66" y2="47.52" class="solid end_marked_circle"></line> + <line x1="79.200005" y1="36.960003" x2="92.4" y2="36.960003" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="87.12" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="84.48" y1="42.24" x2="92.4" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="84.48" y1="52.800003" x2="92.4" y2="47.52" class="solid end_marked_circle"></line> + <line x1="108.240005" y1="36.960003" x2="108.240005" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="100.32001" y1="52.800003" x2="108.240005" y2="47.52" class="solid end_marked_circle"></line> + <line x1="110.880005" y1="36.960003" x2="113.520004" y2="36.960003" class="solid"></line> + <line x1="121.44" y1="31.68" x2="114.840004" y2="44.88" class="solid"></line> + <line x1="126.72" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="134.64" y1="36.960003" x2="139.92" y2="36.960003" class="solid"></line> + <line x1="132" y1="42.24" x2="139.92" y2="36.960003" class="solid end_marked_circle"></line> + <line x1="138.6" y1="39.600002" x2="132" y2="52.800003" class="solid"></line> + <line x1="7.92" y1="47.52" x2="7.92" y2="47.52" class="solid end_marked_circle"></line> + <line x1="0" y1="63.36" x2="7.92" y2="58.08" class="solid end_marked_circle"></line> + <line x1="10.56" y1="47.52" x2="23.76" y2="47.52" class="solid end_marked_circle"></line> + <line x1="21.12" y1="47.52" x2="55.440002" y2="47.52" class="solid"></line> + <line x1="21.12" y1="52.800003" x2="29.04" y2="47.52" class="solid end_marked_circle"></line> + <line x1="26.400002" y1="52.800003" x2="34.32" y2="47.52" class="solid end_marked_circle"></line> + <line x1="31.68" y1="52.800003" x2="39.600002" y2="47.52" class="solid end_marked_circle"></line> + <line x1="36.960003" y1="52.800003" x2="44.88" y2="47.52" class="solid end_marked_circle"></line> + <line x1="42.24" y1="52.800003" x2="50.160004" y2="47.52" class="solid end_marked_circle"></line> + <line x1="42.24" y1="63.36" x2="50.160004" y2="58.08" class="solid end_marked_circle"></line> + <line x1="58.08" y1="42.24" x2="55.440002" y2="47.52" class="solid end_marked_circle"></line> + <line x1="66" y1="47.52" x2="71.28001" y2="47.52" class="solid"></line> + <line x1="58.08" y1="63.36" x2="66" y2="58.08" class="solid end_marked_circle"></line> + <line x1="79.200005" y1="42.24" x2="72.600006" y2="55.440002" class="solid"></line> + <line x1="84.48" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="47.52" x2="97.68" y2="47.52" class="solid"></line> + <line x1="91.08" y1="50.160004" x2="83.16" y2="66" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="113.520004" y2="47.52" class="solid"></line> + <line x1="105.600006" y1="52.800003" x2="113.520004" y2="47.52" class="solid end_marked_circle"></line> + <line x1="132" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="7.92" y1="58.08" x2="13.200001" y2="58.08" class="solid"></line> + <line x1="0" y1="73.920006" x2="7.92" y2="68.64" class="solid end_marked_circle"></line> + <line x1="21.12" y1="52.800003" x2="14.52" y2="66" class="solid"></line> + <line x1="26.400002" y1="52.800003" x2="21.12" y2="63.36" class="solid"></line> + <line x1="31.68" y1="52.800003" x2="26.400002" y2="63.36" class="solid"></line> + <line x1="36.960003" y1="52.800003" x2="31.68" y2="63.36" class="solid"></line> + <line x1="42.24" y1="52.800003" x2="36.960003" y2="63.36" class="solid"></line> + <line x1="50.160004" y1="58.08" x2="55.440002" y2="58.08" class="solid"></line> + <line x1="42.24" y1="73.920006" x2="50.160004" y2="68.64" class="solid end_marked_circle"></line> + <line x1="58.08" y1="52.800003" x2="55.440002" y2="58.08" class="solid end_marked_circle"></line> + <line x1="66" y1="58.08" x2="71.28001" y2="58.08" class="solid"></line> + <line x1="63.36" y1="63.36" x2="71.28001" y2="58.08" class="solid end_marked_circle"></line> + <line x1="92.4" y1="58.08" x2="97.68" y2="58.08" class="solid"></line> + <line x1="100.32001" y1="52.800003" x2="97.68" y2="58.08" class="solid end_marked_circle"></line> + <line x1="100.32001" y1="63.36" x2="108.240005" y2="58.08" class="solid end_marked_circle"></line> + <line x1="108.240005" y1="58.08" x2="113.520004" y2="58.08" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="113.520004" y2="58.08" class="solid end_marked_circle"></line> + <line x1="105.600006" y1="73.920006" x2="113.520004" y2="68.64" class="solid end_marked_circle"></line> + <line x1="134.64" y1="58.08" x2="139.92" y2="58.08" class="solid"></line> + <line x1="7.92" y1="68.64" x2="13.200001" y2="68.64" class="solid"></line> + <line x1="5.28" y1="73.920006" x2="13.200001" y2="68.64" class="solid end_marked_circle"></line> + <line x1="11.88" y1="71.28001" x2="5.28" y2="84.48" class="solid"></line> + <line x1="50.160004" y1="68.64" x2="55.440002" y2="68.64" class="solid"></line> + <line x1="48.84" y1="71.28001" x2="42.24" y2="84.48" class="solid"></line> + <line x1="58.08" y1="63.36" x2="55.440002" y2="68.64" class="solid end_marked_circle"></line> + <line x1="54.120003" y1="71.28001" x2="47.52" y2="84.48" class="solid"></line> + <line x1="58.08" y1="73.920006" x2="66" y2="68.64" class="solid end_marked_circle"></line> + <line x1="66" y1="68.64" x2="92.4" y2="68.64" class="solid"></line> + <line x1="63.36" y1="73.920006" x2="71.28001" y2="68.64" class="solid end_marked_circle"></line> + <line x1="68.64" y1="73.920006" x2="76.560005" y2="68.64" class="solid end_marked_circle"></line> + <line x1="73.920006" y1="73.920006" x2="81.840004" y2="68.64" class="solid end_marked_circle"></line> + <line x1="79.200005" y1="73.920006" x2="87.12" y2="68.64" class="solid end_marked_circle"></line> + <line x1="85.8" y1="71.28001" x2="79.200005" y2="84.48" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="100.32001" y2="73.920006" class="solid"></line> + <line x1="113.520004" y1="68.64" x2="134.64" y2="68.64" class="solid"></line> + <line x1="110.880005" y1="73.920006" x2="118.8" y2="68.64" class="solid end_marked_circle"></line> + <line x1="116.16" y1="73.920006" x2="124.08" y2="68.64" class="solid end_marked_circle"></line> + <line x1="121.44" y1="73.920006" x2="129.36" y2="68.64" class="solid end_marked_circle"></line> + <line x1="126.72" y1="73.920006" x2="134.64" y2="68.64" class="solid end_marked_circle"></line> + <line x1="133.32" y1="71.28001" x2="126.72" y2="84.48" class="solid"></line> + <line x1="5.28" y1="73.920006" x2="0" y2="84.48" class="solid"></line> + <line x1="63.36" y1="73.920006" x2="58.08" y2="84.48" class="solid"></line> + <line x1="68.64" y1="73.920006" x2="63.36" y2="84.48" class="solid"></line> + <line x1="73.920006" y1="73.920006" x2="68.64" y2="84.48" class="solid"></line> + <line x1="79.200005" y1="73.920006" x2="73.920006" y2="84.48" class="solid"></line> + <line x1="110.880005" y1="73.920006" x2="105.600006" y2="84.48" class="solid"></line> + <line x1="116.16" y1="73.920006" x2="110.880005" y2="84.48" class="solid"></line> + <line x1="121.44" y1="73.920006" x2="116.16" y2="84.48" class="solid"></line> + <line x1="126.72" y1="73.920006" x2="121.44" y2="84.48" class="solid"></line> +</svg> diff --git a/static/db/contributed/pattern/barbwire.svg b/static/db/contributed/pattern/barbwire.svg index 679de8d7fb468e5dd6b40a66a32c77df242c8d71..5500d58098ceec24b734cb94f0403cae88bd742f 100644 --- a/static/db/contributed/pattern/barbwire.svg +++ b/static/db/contributed/pattern/barbwire.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,33 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <text x="33" y="7.92" >><</text> + <text x="80.520004" y="7.92" >></text> + <polygon points="89.76,2.64 84.48,5.28 89.76,7.92" class="filled"></polygon> + <text x="91.08" y="7.92" ><</text> <text x="27.720001" y="18.480001" >><</text> <polygon points="47.52,13.200001 42.24,15.84 47.52,18.480001" class="filled"></polygon> <text x="48.84" y="18.480001" ><</text> + <text x="80.520004" y="18.480001" >></text> + <polygon points="89.76,13.200001 84.48,15.84 89.76,18.480001" class="filled"></polygon> + <text x="91.08" y="18.480001" ><</text> <text x="22.44" y="29.04" >><</text> <text x="43.56" y="29.04" >></text> <polygon points="52.800003,23.76 47.52,26.400002 52.800003,29.04" class="filled"></polygon> <text x="54.120003" y="29.04" ><</text> + <text x="80.520004" y="29.04" >></text> + <polygon points="89.76,23.76 84.48,26.400002 89.76,29.04" class="filled"></polygon> + <text x="91.08" y="29.04" ><</text> <text x="17.16" y="39.600002" >></text> <polygon points="26.400002,34.32 21.12,36.960003 26.400002,39.600002" class="filled"></polygon> <text x="27.720001" y="39.600002" ><</text> <text x="48.84" y="39.600002" >></text> <polygon points="58.08,34.32 52.800003,36.960003 58.08,39.600002" class="filled"></polygon> <text x="59.4" y="39.600002" ><</text> + <text x="80.520004" y="39.600002" >></text> + <polygon points="89.76,34.32 84.48,36.960003 89.76,39.600002" class="filled"></polygon> + <text x="91.08" y="39.600002" ><</text> <text x="11.88" y="50.160004" >></text> <polygon points="21.12,44.88 15.84,47.52 21.12,50.160004" class="filled"></polygon> <polygon points="26.400002,44.88 21.12,47.52 26.400002,50.160004" class="filled"></polygon> @@ -120,16 +149,52 @@ <text x="54.120003" y="50.160004" >></text> <polygon points="63.36,44.88 58.08,47.52 63.36,50.160004" class="filled"></polygon> <text x="64.68" y="50.160004" ><</text> + <text x="80.520004" y="50.160004" >></text> + <polygon points="89.76,44.88 84.48,47.52 89.76,50.160004" class="filled"></polygon> + <text x="91.08" y="50.160004" ><</text> <text x="6.6000004" y="60.72" >></text> <polygon points="15.84,55.440002 10.56,58.08 15.84,60.72" class="filled"></polygon> <text x="17.16" y="60.72" ><</text> <text x="59.4" y="60.72" >></text> <polygon points="68.64,55.440002 63.36,58.08 68.64,60.72" class="filled"></polygon> <text x="69.96" y="60.72" ><</text> + <text x="80.520004" y="60.72" >></text> + <polygon points="89.76,55.440002 84.48,58.08 89.76,60.72" class="filled"></polygon> + <text x="91.08" y="60.72" ><</text> <text x="1.32" y="71.28001" >></text> <polygon points="10.56,66 5.28,68.64 10.56,71.28001" class="filled"></polygon> <text x="11.88" y="71.28001" ><</text> <text x="64.68" y="71.28001" >></text> <polygon points="73.920006,66 68.64,68.64 73.920006,71.28001" class="filled"></polygon> - <text x="75.240005" y="71.28001" ><</text> + <text x="75.240005" y="71.28001" ><></text> + <polygon points="89.76,66 84.48,68.64 89.76,71.28001" class="filled"></polygon> + <text x="91.08" y="71.28001" ><</text> + <text x="143.88" y="29.04" >></text> + <polygon points="153.12001,23.76 147.84001,26.400002 153.12001,29.04" class="filled"></polygon> + <polygon points="158.40001,23.76 153.12001,26.400002 158.40001,29.04" class="filled"></polygon> + <text x="159.72" y="29.04" ><</text> + <text x="101.64001" y="39.600002" >></text> + <polygon points="110.880005,34.32 105.600006,36.960003 110.880005,39.600002" class="filled"></polygon> + <text x="112.200005" y="39.600002" ><</text> + <text x="133.32" y="39.600002" >></text> + <polygon points="142.56001,34.32 137.28,36.960003 142.56001,39.600002" class="filled"></polygon> + <text x="143.88" y="39.600002" ><</text> + <text x="112.200005" y="50.160004" >></text> + <polygon points="121.44,44.88 116.16,47.52 121.44,50.160004" class="filled"></polygon> + <text x="122.76" y="50.160004" ><></text> + <polygon points="137.28,44.88 132,47.52 137.28,50.160004" class="filled"></polygon> + <text x="138.6" y="50.160004" ><</text> + <text x="112.200005" y="60.72" >></text> + <polygon points="121.44,55.440002 116.16,58.08 121.44,60.72" class="filled"></polygon> + <text x="122.76" y="60.72" ><</text> + <text x="133.32" y="60.72" >></text> + <polygon points="142.56001,55.440002 137.28,58.08 142.56001,60.72" class="filled"></polygon> + <text x="143.88" y="60.72" ><</text> + <text x="101.64001" y="71.28001" >></text> + <polygon points="110.880005,66 105.600006,68.64 110.880005,71.28001" class="filled"></polygon> + <text x="112.200005" y="71.28001" ><</text> + <text x="143.88" y="71.28001" >></text> + <polygon points="153.12001,66 147.84001,68.64 153.12001,71.28001" class="filled"></polygon> + <polygon points="158.40001,66 153.12001,68.64 158.40001,71.28001" class="filled"></polygon> + <text x="159.72" y="71.28001" ><</text> </svg> diff --git a/static/db/contributed/pattern/caligraphy.svg b/static/db/contributed/pattern/caligraphy.svg index 573e1bd162eea1e50607348b94d1830ba10755a1..1073a78869e95780f9048f896ce27f0a076ffe6d 100644 --- a/static/db/contributed/pattern/caligraphy.svg +++ b/static/db/contributed/pattern/caligraphy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="200.64001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="211.20001" height="200.64001" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="95.04" height="200.64001"></rect> + <rect class="backdrop" x="0" y="0" width="211.20001" height="200.64001"></rect> <line x1="44.88" y1="15.84" x2="50.160004" y2="15.84" class="solid"></line> <line x1="29.04" y1="26.400002" x2="50.160004" y2="26.400002" class="solid"></line> <text x="22.44" y="39.600002" >*</text> @@ -127,4 +144,42 @@ <line x1="76.560005" y1="163.68001" x2="81.840004" y2="163.68001" class="solid"></line> <text x="1.32" y="176.88" >*</text> <line x1="7.92" y1="184.8" x2="13.200001" y2="184.8" class="solid"></line> + <text x="106.920006" y="18.480001" >*</text> + <line x1="97.68" y1="26.400002" x2="102.96001" y2="26.400002" class="solid"></line> + <line x1="97.68" y1="36.960003" x2="102.96001" y2="36.960003" class="solid"></line> + <line x1="97.68" y1="47.52" x2="102.96001" y2="47.52" class="solid"></line> + <line x1="97.68" y1="58.08" x2="102.96001" y2="58.08" class="solid"></line> + <line x1="97.68" y1="68.64" x2="102.96001" y2="68.64" class="solid"></line> + <line x1="113.520004" y1="68.64" x2="129.36" y2="68.64" class="solid"></line> + <line x1="97.68" y1="79.200005" x2="108.240005" y2="79.200005" class="solid"></line> + <line x1="118.8" y1="79.200005" x2="129.36" y2="79.200005" class="solid"></line> + <text x="143.88" y="81.840004" >*</text> + <line x1="97.68" y1="89.76" x2="102.96001" y2="89.76" class="solid"></line> + <line x1="124.08" y1="89.76" x2="139.92" y2="89.76" class="solid"></line> + <line x1="97.68" y1="100.32001" x2="102.96001" y2="100.32001" class="solid"></line> + <line x1="129.36" y1="100.32001" x2="134.64" y2="100.32001" class="solid"></line> + <line x1="97.68" y1="110.880005" x2="102.96001" y2="110.880005" class="solid"></line> + <line x1="129.36" y1="110.880005" x2="134.64" y2="110.880005" class="solid"></line> + <line x1="97.68" y1="121.44" x2="102.96001" y2="121.44" class="solid"></line> + <line x1="129.36" y1="121.44" x2="134.64" y2="121.44" class="solid"></line> + <line x1="97.68" y1="132" x2="102.96001" y2="132" class="solid"></line> + <line x1="129.36" y1="132" x2="134.64" y2="132" class="solid"></line> + <line x1="97.68" y1="142.56001" x2="102.96001" y2="142.56001" class="solid"></line> + <line x1="129.36" y1="142.56001" x2="134.64" y2="142.56001" class="solid"></line> + <line x1="102.96001" y1="153.12001" x2="124.08" y2="153.12001" class="solid"></line> + <line x1="108.240005" y1="163.68001" x2="118.8" y2="163.68001" class="solid"></line> + <line x1="171.6" y1="68.64" x2="187.44" y2="68.64" class="solid"></line> + <text x="165" y="81.840004" >*</text> + <line x1="176.88" y1="79.200005" x2="187.44" y2="79.200005" class="solid"></line> + <text x="201.96" y="81.840004" >*</text> + <text x="159.72" y="92.4" >*</text> + <line x1="182.16" y1="89.76" x2="198.00002" y2="89.76" class="solid"></line> + <line x1="155.76001" y1="100.32001" x2="161.04001" y2="100.32001" class="solid"></line> + <line x1="155.76001" y1="110.880005" x2="161.04001" y2="110.880005" class="solid"></line> + <line x1="155.76001" y1="121.44" x2="161.04001" y2="121.44" class="solid"></line> + <line x1="155.76001" y1="132" x2="161.04001" y2="132" class="solid"></line> + <line x1="155.76001" y1="142.56001" x2="166.32" y2="142.56001" class="solid"></line> + <text x="196.68001" y="145.20001" >*</text> + <line x1="161.04001" y1="153.12001" x2="192.72" y2="153.12001" class="solid"></line> + <line x1="166.32" y1="163.68001" x2="187.44" y2="163.68001" class="solid"></line> </svg> diff --git a/static/db/contributed/pattern/catwalk.svg b/static/db/contributed/pattern/catwalk.svg index 5fe919cbf5f3803ea386df0c31bb7c907b048b7b..b79ad7fe7de74735805253d0e42735019514b130 100644 --- a/static/db/contributed/pattern/catwalk.svg +++ b/static/db/contributed/pattern/catwalk.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <line x1="47.52" y1="10.56" x2="42.24" y2="21.12" class="solid"></line> <line x1="52.800003" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> @@ -106,7 +123,13 @@ <line x1="42.24" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> <line x1="68.64" y1="42.24" x2="63.36" y2="52.800003" class="solid"></line> <line x1="73.920006" y1="52.800003" x2="68.64" y2="63.36" class="solid"></line> - <line x1="79.200005" y1="63.36" x2="73.920006" y2="73.920006" class="solid"></line> + <line x1="95.04" y1="63.36" x2="89.76" y2="73.920006" class="solid"></line> + <line x1="158.40001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="116.16" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="147.84001" y1="52.800003" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="158.40001" y1="63.36" x2="153.12001" y2="73.920006" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="158.40001" y2="73.920006" class="solid"></line> <g> <line x1="31.68" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> <line x1="42.24" y1="0" x2="5.28" y2="73.920006" class="solid"></line> @@ -117,19 +140,46 @@ <line x1="5.28" y1="63.36" x2="10.56" y2="63.36" class="solid"></line> <line x1="0" y1="73.920006" x2="5.28" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="79.200005" y1="10.56" x2="84.48" y2="10.56" class="solid"></line> + <line x1="89.76" y1="0" x2="84.48" y2="10.56" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="0" x2="84.48" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="84.48" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="10.56" x2="84.48" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + </g> <g> <line x1="42.24" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> <line x1="52.800003" y1="21.12" x2="47.52" y2="31.68" class="solid"></line> </g> + <g> + <line x1="95.04" y1="21.12" x2="84.48" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> + </g> <g> <line x1="47.52" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> <line x1="58.08" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> <line x1="47.52" y1="42.24" x2="42.24" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="95.04" y1="31.68" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="84.48" y2="52.800003" class="solid"></line> + </g> <g> <line x1="52.800003" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> <line x1="63.36" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="95.04" y1="42.24" x2="84.48" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="84.48" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="73.920006" y2="73.920006" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="84.48" y2="73.920006" class="solid"></line> + <line x1="73.920006" y1="73.920006" x2="84.48" y2="73.920006" class="solid"></line> + </g> <g> <line x1="58.08" y1="63.36" x2="63.36" y2="63.36" class="solid"></line> <line x1="68.64" y1="52.800003" x2="63.36" y2="63.36" class="solid"></line> @@ -138,4 +188,32 @@ <line x1="63.36" y1="73.920006" x2="68.64" y2="73.920006" class="solid"></line> <line x1="73.920006" y1="63.36" x2="68.64" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="142.56001" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="153.12001" y1="21.12" x2="137.28" y2="52.800003" class="solid"></line> + <line x1="132" y1="42.24" x2="137.28" y2="42.24" class="solid"></line> + <line x1="142.56001" y1="31.68" x2="132" y2="52.800003" class="solid"></line> + <line x1="126.72" y1="42.24" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="121.44" y1="52.800003" x2="132" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="63.36" x2="116.16" y2="63.36" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="121.44" y2="63.36" class="solid"></line> + <line x1="100.32001" y1="73.920006" x2="105.600006" y2="73.920006" class="solid"></line> + <line x1="110.880005" y1="63.36" x2="105.600006" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="42.24" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="105.600006" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="110.880005" y1="52.800003" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="42.24" x2="116.16" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="132" y1="63.36" x2="137.28" y2="63.36" class="solid"></line> + <line x1="142.56001" y1="52.800003" x2="137.28" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="142.56001" y1="73.920006" x2="147.84001" y2="73.920006" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="147.84001" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/pattern/coinstak.svg b/static/db/contributed/pattern/coinstak.svg index 0b0af059d18fe7ddd6be870f107a205af2f683d2..37b7f6ba4c213d2e33e035386d57ba1cecc70d93 100644 --- a/static/db/contributed/pattern/coinstak.svg +++ b/static/db/contributed/pattern/coinstak.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,27 +112,74 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <text x="33" y="7.92" >O</text> <path d="M 36.960003,0 A 10.56,10.56 0,0,1 36.960003,10.56" class="nofill"></path> + <text x="80.520004" y="7.92" >O</text> <text x="27.720001" y="18.480001" >O</text> <path d="M 31.68,10.56 A 10.56,10.56 0,0,1 31.68,21.12" class="nofill"></path> <path d="M 42.24,10.56 A 10.56,10.56 0,0,1 42.24,21.12" class="nofill"></path> + <text x="80.520004" y="18.480001" >O</text> <text x="22.44" y="29.04" >O</text> <text x="43.56" y="29.04" >O</text> + <text x="80.520004" y="29.04" >O</text> <text x="17.16" y="39.600002" >O</text> <text x="48.84" y="39.600002" >O</text> + <text x="80.520004" y="39.600002" >O</text> <text x="11.88" y="50.160004" >O</text> <path d="M 31.68,42.24 A 10.56,10.56 0,0,1 31.68,52.800003" class="nofill"></path> <path d="M 36.960003,42.24 A 10.56,10.56 0,0,1 36.960003,52.800003" class="nofill"></path> <path d="M 42.24,42.24 A 10.56,10.56 0,0,1 42.24,52.800003" class="nofill"></path> <text x="54.120003" y="50.160004" >O</text> + <text x="80.520004" y="50.160004" >O</text> <text x="6.6000004" y="60.72" >O</text> <text x="59.4" y="60.72" >O</text> + <text x="80.520004" y="60.72" >O</text> <text x="1.32" y="71.28001" >O</text> <path d="M 5.28,63.36 A 10.56,10.56 0,0,1 5.28,73.920006" class="nofill"></path> <text x="64.68" y="71.28001" >O</text> <path d="M 73.920006,63.36 A 10.56,10.56 0,0,1 73.920006,73.920006" class="nofill"></path> + <text x="80.520004" y="71.28001" >O</text> + <text x="143.88" y="29.04" >O</text> + <path d="M 147.84001,21.12 A 10.56,10.56 0,0,1 147.84001,31.68" class="nofill"></path> + <path d="M 153.12001,21.12 A 10.56,10.56 0,0,1 153.12001,31.68" class="nofill"></path> + <path d="M 158.40001,21.12 A 10.56,10.56 0,0,1 158.40001,31.68" class="nofill"></path> + <text x="101.64001" y="39.600002" >O</text> + <path d="M 105.600006,31.68 A 10.56,10.56 0,0,1 105.600006,42.24" class="nofill"></path> + <path d="M 110.880005,31.68 A 10.56,10.56 0,0,1 110.880005,42.24" class="nofill"></path> + <text x="133.32" y="39.600002" >O</text> + <path d="M 142.56001,31.68 A 10.56,10.56 0,0,1 142.56001,42.24" class="nofill"></path> + <text x="112.200005" y="50.160004" >O</text> + <text x="128.04001" y="50.160004" >O</text> + <path d="M 132,42.24 A 10.56,10.56 0,0,1 132,52.800003" class="nofill"></path> + <text x="112.200005" y="60.72" >O</text> + <text x="133.32" y="60.72" >O</text> + <path d="M 142.56001,52.800003 A 10.56,10.56 0,0,1 142.56001,63.36" class="nofill"></path> + <text x="101.64001" y="71.28001" >O</text> + <path d="M 105.600006,63.36 A 10.56,10.56 0,0,1 105.600006,73.920006" class="nofill"></path> + <path d="M 110.880005,63.36 A 10.56,10.56 0,0,1 110.880005,73.920006" class="nofill"></path> + <text x="143.88" y="71.28001" >O</text> + <path d="M 147.84001,63.36 A 10.56,10.56 0,0,1 147.84001,73.920006" class="nofill"></path> + <path d="M 153.12001,63.36 A 10.56,10.56 0,0,1 153.12001,73.920006" class="nofill"></path> + <path d="M 158.40001,63.36 A 10.56,10.56 0,0,1 158.40001,73.920006" class="nofill"></path> + <g> + <path d="M 84.48,0 A 10.56,10.56 0,0,1 84.48,10.56" class="nofill"></path> + <path d="M 84.48,10.56 A 10.56,10.56 0,0,1 84.48,21.12" class="nofill"></path> + <path d="M 84.48,21.12 A 10.56,10.56 0,0,1 84.48,31.68" class="nofill"></path> + <path d="M 84.48,31.68 A 10.56,10.56 0,0,1 84.48,42.24" class="nofill"></path> + <path d="M 84.48,42.24 A 10.56,10.56 0,0,1 84.48,52.800003" class="nofill"></path> + <path d="M 84.48,52.800003 A 10.56,10.56 0,0,1 84.48,63.36" class="nofill"></path> + <path d="M 84.48,63.36 A 10.56,10.56 0,0,1 84.48,73.920006" class="nofill"></path> + </g> + <g> + <path d="M 89.76,0 A 10.56,10.56 0,0,1 89.76,10.56" class="nofill"></path> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,1 89.76,21.12" class="nofill"></path> + <path d="M 89.76,21.12 A 10.56,10.56 0,0,1 89.76,31.68" class="nofill"></path> + <path d="M 89.76,31.68 A 10.56,10.56 0,0,1 89.76,42.24" class="nofill"></path> + <path d="M 89.76,42.24 A 10.56,10.56 0,0,1 89.76,52.800003" class="nofill"></path> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,1 89.76,63.36" class="nofill"></path> + <path d="M 89.76,63.36 A 10.56,10.56 0,0,1 89.76,73.920006" class="nofill"></path> + </g> <g> <path d="M 47.52,10.56 A 10.56,10.56 0,0,1 47.52,21.12" class="nofill"></path> <path d="M 47.52,21.12 A 10.56,10.56 0,0,1 47.52,31.68" class="nofill"></path> @@ -153,4 +217,17 @@ <path d="M 68.64,52.800003 A 10.56,10.56 0,0,1 68.64,63.36" class="nofill"></path> <path d="M 68.64,63.36 A 10.56,10.56 0,0,1 68.64,73.920006" class="nofill"></path> </g> + <g> + <path d="M 137.28,31.68 A 10.56,10.56 0,0,1 137.28,42.24" class="nofill"></path> + <path d="M 137.28,42.24 A 10.56,10.56 0,0,1 137.28,52.800003" class="nofill"></path> + <path d="M 137.28,52.800003 A 10.56,10.56 0,0,1 137.28,63.36" class="nofill"></path> + </g> + <g> + <path d="M 116.16,42.24 A 10.56,10.56 0,0,1 116.16,52.800003" class="nofill"></path> + <path d="M 116.16,52.800003 A 10.56,10.56 0,0,1 116.16,63.36" class="nofill"></path> + </g> + <g> + <path d="M 121.44,42.24 A 10.56,10.56 0,0,1 121.44,52.800003" class="nofill"></path> + <path d="M 121.44,52.800003 A 10.56,10.56 0,0,1 121.44,63.36" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/pattern/diamond.svg b/static/db/contributed/pattern/diamond.svg index 84ba9f7e4b9b8a4f6bf25ca2fdebc793ce37089e..7dcde8cc45b9ebe4c1e9265e0bde9625a0cffc70 100644 --- a/static/db/contributed/pattern/diamond.svg +++ b/static/db/contributed/pattern/diamond.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,18 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> - <line x1="47.52" y1="10.56" x2="79.200005" y2="73.920006" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> + <line x1="89.76" y1="0" x2="95.04" y2="10.56" class="solid"></line> <line x1="26.400002" y1="31.68" x2="36.960003" y2="52.800003" class="solid"></line> <line x1="21.12" y1="42.24" x2="26.400002" y2="52.800003" class="solid"></line> <line x1="36.960003" y1="42.24" x2="42.24" y2="52.800003" class="solid"></line> <line x1="42.24" y1="42.24" x2="47.52" y2="52.800003" class="solid"></line> <line x1="15.84" y1="52.800003" x2="21.12" y2="63.36" class="solid"></line> <line x1="10.56" y1="63.36" x2="15.84" y2="73.920006" class="solid"></line> + <line x1="153.12001" y1="21.12" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="158.40001" y1="21.12" x2="163.68001" y2="31.68" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="158.40001" y2="73.920006" class="solid"></line> + <line x1="158.40001" y1="63.36" x2="163.68001" y2="73.920006" class="solid"></line> <g> <line x1="36.960003" y1="0" x2="0" y2="73.920006" class="solid"></line> <line x1="36.960003" y1="0" x2="73.920006" y2="73.920006" class="solid"></line> @@ -118,4 +139,66 @@ <line x1="5.28" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> <line x1="68.64" y1="63.36" x2="63.36" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="84.48" y1="0" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="84.48" y1="0" x2="95.04" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="47.52" y1="10.56" x2="79.200005" y2="73.920006" class="solid"></line> + <line x1="84.48" y1="63.36" x2="79.200005" y2="73.920006" class="solid"></line> + <line x1="84.48" y1="63.36" x2="89.76" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="84.48" y1="10.56" x2="95.04" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="84.48" y1="21.12" x2="95.04" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="84.48" y1="31.68" x2="95.04" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="42.24" x2="95.04" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="95.04" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="147.84001" y1="21.12" x2="142.56001" y2="31.68" class="solid"></line> + <line x1="147.84001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="31.68" x2="147.84001" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="31.68" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="110.880005" y1="31.68" x2="126.72" y2="63.36" class="solid"></line> + <line x1="116.16" y1="42.24" x2="110.880005" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="31.68" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="31.68" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="121.44" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="132" y1="42.24" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="42.24" x2="153.12001" y2="73.920006" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="142.56001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="52.800003" x2="110.880005" y2="63.36" class="solid"></line> + <line x1="116.16" y1="52.800003" x2="121.44" y2="63.36" class="solid"></line> + <line x1="110.880005" y1="63.36" x2="116.16" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="63.36" x2="100.32001" y2="73.920006" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="110.880005" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/pattern/dotmatrix.svg b/static/db/contributed/pattern/dotmatrix.svg index 7436eaf8acbb579612a920dc506699fba0969b90..984817aab0dead72e138ccefc035200f07abf4ec 100644 --- a/static/db/contributed/pattern/dotmatrix.svg +++ b/static/db/contributed/pattern/dotmatrix.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="216.48001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,13 +112,37 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="216.48001" height="95.04"></rect> <g> <line x1="36.960003" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <path d="M 36.960003,10.56 A 10.56,10.56 0,0,0 36.960003,21.12" class="nofill"></path> <line x1="36.960003" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> <path d="M 42.24,10.56 A 10.56,10.56 0,0,1 42.24,21.12" class="nofill"></path> </g> + <g> + <line x1="84.48" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <path d="M 84.48,10.56 A 10.56,10.56 0,0,0 84.48,21.12" class="nofill"></path> + <line x1="84.48" y1="21.12" x2="89.76" y2="21.12" class="solid"></line> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,1 89.76,21.12" class="nofill"></path> + <path d="M 84.48,21.12 A 10.56,10.56 0,0,0 84.48,31.68" class="nofill"></path> + <line x1="84.48" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <path d="M 89.76,21.12 A 10.56,10.56 0,0,1 89.76,31.68" class="nofill"></path> + <path d="M 84.48,31.68 A 10.56,10.56 0,0,0 84.48,42.24" class="nofill"></path> + <line x1="84.48" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + <path d="M 89.76,31.68 A 10.56,10.56 0,0,1 89.76,42.24" class="nofill"></path> + <path d="M 84.48,42.24 A 10.56,10.56 0,0,0 84.48,52.800003" class="nofill"></path> + <line x1="84.48" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <path d="M 89.76,42.24 A 10.56,10.56 0,0,1 89.76,52.800003" class="nofill"></path> + <path d="M 84.48,52.800003 A 10.56,10.56 0,0,0 84.48,63.36" class="nofill"></path> + <line x1="84.48" y1="63.36" x2="89.76" y2="63.36" class="solid"></line> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,1 89.76,63.36" class="nofill"></path> + <path d="M 84.48,63.36 A 10.56,10.56 0,0,0 84.48,73.920006" class="nofill"></path> + <line x1="84.48" y1="73.920006" x2="89.76" y2="73.920006" class="solid"></line> + <path d="M 89.76,63.36 A 10.56,10.56 0,0,1 89.76,73.920006" class="nofill"></path> + <path d="M 84.48,73.920006 A 10.56,10.56 0,0,0 84.48,84.48" class="nofill"></path> + <line x1="84.48" y1="84.48" x2="89.76" y2="84.48" class="solid"></line> + <path d="M 89.76,73.920006 A 10.56,10.56 0,0,1 89.76,84.48" class="nofill"></path> + </g> <g> <line x1="26.400002" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> <path d="M 26.400002,21.12 A 10.56,10.56 0,0,0 26.400002,31.68" class="nofill"></path> @@ -126,6 +167,42 @@ <line x1="58.08" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> <path d="M 63.36,31.68 A 10.56,10.56 0,0,1 63.36,42.24" class="nofill"></path> </g> + <g> + <line x1="100.32001" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <path d="M 100.32001,31.68 A 10.56,10.56 0,0,0 100.32001,42.24" class="nofill"></path> + <line x1="100.32001" y1="42.24" x2="105.600006" y2="42.24" class="solid"></line> + <path d="M 105.600006,31.68 A 10.56,10.56 0,0,1 105.600006,42.24" class="nofill"></path> + </g> + <g> + <line x1="116.16" y1="31.68" x2="121.44" y2="31.68" class="solid"></line> + <path d="M 116.16,31.68 A 10.56,10.56 0,0,0 116.16,42.24" class="nofill"></path> + <line x1="116.16" y1="42.24" x2="121.44" y2="42.24" class="solid"></line> + <path d="M 121.44,31.68 A 10.56,10.56 0,0,1 121.44,42.24" class="nofill"></path> + </g> + <g> + <line x1="132" y1="31.68" x2="137.28" y2="31.68" class="solid"></line> + <path d="M 132,31.68 A 10.56,10.56 0,0,0 132,42.24" class="nofill"></path> + <line x1="132" y1="42.24" x2="137.28" y2="42.24" class="solid"></line> + <path d="M 137.28,31.68 A 10.56,10.56 0,0,1 137.28,42.24" class="nofill"></path> + </g> + <g> + <line x1="168.96" y1="31.68" x2="174.24" y2="31.68" class="solid"></line> + <path d="M 168.96,31.68 A 10.56,10.56 0,0,0 168.96,42.24" class="nofill"></path> + <line x1="168.96" y1="42.24" x2="174.24" y2="42.24" class="solid"></line> + <path d="M 174.24,31.68 A 10.56,10.56 0,0,1 174.24,42.24" class="nofill"></path> + </g> + <g> + <line x1="184.8" y1="31.68" x2="190.08" y2="31.68" class="solid"></line> + <path d="M 184.8,31.68 A 10.56,10.56 0,0,0 184.8,42.24" class="nofill"></path> + <line x1="184.8" y1="42.24" x2="190.08" y2="42.24" class="solid"></line> + <path d="M 190.08,31.68 A 10.56,10.56 0,0,1 190.08,42.24" class="nofill"></path> + </g> + <g> + <line x1="200.64001" y1="31.68" x2="205.92001" y2="31.68" class="solid"></line> + <path d="M 200.64001,31.68 A 10.56,10.56 0,0,0 200.64001,42.24" class="nofill"></path> + <line x1="200.64001" y1="42.24" x2="205.92001" y2="42.24" class="solid"></line> + <path d="M 205.92001,31.68 A 10.56,10.56 0,0,1 205.92001,42.24" class="nofill"></path> + </g> <g> <line x1="5.28" y1="42.24" x2="10.56" y2="42.24" class="solid"></line> <path d="M 5.28,42.24 A 10.56,10.56 0,0,0 5.28,52.800003" class="nofill"></path> @@ -156,6 +233,30 @@ <line x1="68.64" y1="84.48" x2="73.920006" y2="84.48" class="solid"></line> <path d="M 73.920006,73.920006 A 10.56,10.56 0,0,1 73.920006,84.48" class="nofill"></path> </g> + <g> + <line x1="142.56001" y1="42.24" x2="147.84001" y2="42.24" class="solid"></line> + <path d="M 142.56001,42.24 A 10.56,10.56 0,0,0 142.56001,52.800003" class="nofill"></path> + <line x1="142.56001" y1="52.800003" x2="147.84001" y2="52.800003" class="solid"></line> + <path d="M 147.84001,42.24 A 10.56,10.56 0,0,1 147.84001,52.800003" class="nofill"></path> + <path d="M 142.56001,52.800003 A 10.56,10.56 0,0,0 142.56001,63.36" class="nofill"></path> + <line x1="142.56001" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <path d="M 147.84001,52.800003 A 10.56,10.56 0,0,1 147.84001,63.36" class="nofill"></path> + <path d="M 142.56001,63.36 A 10.56,10.56 0,0,0 142.56001,73.920006" class="nofill"></path> + <line x1="142.56001" y1="73.920006" x2="147.84001" y2="73.920006" class="solid"></line> + <path d="M 147.84001,63.36 A 10.56,10.56 0,0,1 147.84001,73.920006" class="nofill"></path> + </g> + <g> + <line x1="158.40001" y1="42.24" x2="163.68001" y2="42.24" class="solid"></line> + <path d="M 158.40001,42.24 A 10.56,10.56 0,0,0 158.40001,52.800003" class="nofill"></path> + <line x1="158.40001" y1="52.800003" x2="163.68001" y2="52.800003" class="solid"></line> + <path d="M 163.68001,42.24 A 10.56,10.56 0,0,1 163.68001,52.800003" class="nofill"></path> + <path d="M 158.40001,52.800003 A 10.56,10.56 0,0,0 158.40001,63.36" class="nofill"></path> + <line x1="158.40001" y1="63.36" x2="163.68001" y2="63.36" class="solid"></line> + <path d="M 163.68001,52.800003 A 10.56,10.56 0,0,1 163.68001,63.36" class="nofill"></path> + <path d="M 158.40001,63.36 A 10.56,10.56 0,0,0 158.40001,73.920006" class="nofill"></path> + <line x1="158.40001" y1="73.920006" x2="163.68001" y2="73.920006" class="solid"></line> + <path d="M 163.68001,63.36 A 10.56,10.56 0,0,1 163.68001,73.920006" class="nofill"></path> + </g> <g> <line x1="21.12" y1="52.800003" x2="26.400002" y2="52.800003" class="solid"></line> <path d="M 21.12,52.800003 A 10.56,10.56 0,0,0 21.12,63.36" class="nofill"></path> @@ -174,4 +275,40 @@ <line x1="52.800003" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> <path d="M 58.08,52.800003 A 10.56,10.56 0,0,1 58.08,63.36" class="nofill"></path> </g> + <g> + <line x1="100.32001" y1="73.920006" x2="105.600006" y2="73.920006" class="solid"></line> + <path d="M 100.32001,73.920006 A 10.56,10.56 0,0,0 100.32001,84.48" class="nofill"></path> + <line x1="100.32001" y1="84.48" x2="105.600006" y2="84.48" class="solid"></line> + <path d="M 105.600006,73.920006 A 10.56,10.56 0,0,1 105.600006,84.48" class="nofill"></path> + </g> + <g> + <line x1="116.16" y1="73.920006" x2="121.44" y2="73.920006" class="solid"></line> + <path d="M 116.16,73.920006 A 10.56,10.56 0,0,0 116.16,84.48" class="nofill"></path> + <line x1="116.16" y1="84.48" x2="121.44" y2="84.48" class="solid"></line> + <path d="M 121.44,73.920006 A 10.56,10.56 0,0,1 121.44,84.48" class="nofill"></path> + </g> + <g> + <line x1="132" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> + <path d="M 132,73.920006 A 10.56,10.56 0,0,0 132,84.48" class="nofill"></path> + <line x1="132" y1="84.48" x2="137.28" y2="84.48" class="solid"></line> + <path d="M 137.28,73.920006 A 10.56,10.56 0,0,1 137.28,84.48" class="nofill"></path> + </g> + <g> + <line x1="168.96" y1="73.920006" x2="174.24" y2="73.920006" class="solid"></line> + <path d="M 168.96,73.920006 A 10.56,10.56 0,0,0 168.96,84.48" class="nofill"></path> + <line x1="168.96" y1="84.48" x2="174.24" y2="84.48" class="solid"></line> + <path d="M 174.24,73.920006 A 10.56,10.56 0,0,1 174.24,84.48" class="nofill"></path> + </g> + <g> + <line x1="184.8" y1="73.920006" x2="190.08" y2="73.920006" class="solid"></line> + <path d="M 184.8,73.920006 A 10.56,10.56 0,0,0 184.8,84.48" class="nofill"></path> + <line x1="184.8" y1="84.48" x2="190.08" y2="84.48" class="solid"></line> + <path d="M 190.08,73.920006 A 10.56,10.56 0,0,1 190.08,84.48" class="nofill"></path> + </g> + <g> + <line x1="200.64001" y1="73.920006" x2="205.92001" y2="73.920006" class="solid"></line> + <path d="M 200.64001,73.920006 A 10.56,10.56 0,0,0 200.64001,84.48" class="nofill"></path> + <line x1="200.64001" y1="84.48" x2="205.92001" y2="84.48" class="solid"></line> + <path d="M 205.92001,73.920006 A 10.56,10.56 0,0,1 205.92001,84.48" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/pattern/marquee.svg b/static/db/contributed/pattern/marquee.svg index f8a92c1542c069db18d2923bf5c503b70bc317d4..fd8df1904ea3db2f411520666b5fa22adf64032f 100644 --- a/static/db/contributed/pattern/marquee.svg +++ b/static/db/contributed/pattern/marquee.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,27 +112,50 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <line x1="34.32" y1="7.92" x2="34.32" y2="10.56" class="solid"></line> <text x="38.280003" y="7.92" >:</text> + <text x="80.520004" y="7.92" >.</text> + <line x1="87.12" y1="0" x2="87.12" y2="73.920006" class="broken"></line> + <line x1="92.4" y1="0" x2="92.4" y2="73.920006" class="broken"></line> <line x1="29.04" y1="18.480001" x2="29.04" y2="52.800003" class="broken"></line> <text x="33" y="18.480001" >:</text> <text x="43.56" y="18.480001" >:</text> <line x1="50.160004" y1="10.56" x2="50.160004" y2="31.68" class="broken"></line> + <text x="80.520004" y="18.480001" >.</text> <line x1="23.76" y1="29.04" x2="23.76" y2="52.800003" class="broken"></line> <text x="43.56" y="29.04" >.</text> <line x1="55.440002" y1="21.12" x2="55.440002" y2="42.24" class="broken"></line> + <text x="80.520004" y="29.04" >.</text> <line x1="18.480001" y1="39.600002" x2="18.480001" y2="63.36" class="broken"></line> <text x="48.84" y="39.600002" >.</text> <line x1="60.72" y1="31.68" x2="60.72" y2="52.800003" class="broken"></line> + <text x="80.520004" y="39.600002" >.</text> <line x1="13.200001" y1="50.160004" x2="13.200001" y2="73.920006" class="broken"></line> <text x="33" y="50.160004" >:::</text> <text x="54.120003" y="50.160004" >.</text> <line x1="66" y1="42.24" x2="66" y2="63.36" class="broken"></line> + <text x="80.520004" y="50.160004" >.</text> <line x1="7.92" y1="60.72" x2="7.92" y2="63.36" class="solid"></line> <text x="59.4" y="60.72" >.</text> <line x1="71.28001" y1="52.800003" x2="71.28001" y2="73.920006" class="broken"></line> + <text x="80.520004" y="60.72" >.</text> <text x="1.32" y="71.28001" >.:</text> <text x="64.68" y="71.28001" >.</text> - <text x="75.240005" y="71.28001" >:</text> + <text x="75.240005" y="71.28001" >:.</text> + <line x1="145.20001" y1="29.04" x2="145.20001" y2="31.68" class="solid"></line> + <text x="149.16" y="29.04" >:::</text> + <text x="101.64001" y="39.600002" >.::</text> + <line x1="134.64" y1="39.600002" x2="134.64" y2="42.24" class="solid"></line> + <line x1="139.92" y1="31.68" x2="139.92" y2="63.36" class="broken"></line> + <text x="143.88" y="39.600002" >:</text> + <text x="112.200005" y="50.160004" >.</text> + <line x1="118.8" y1="42.24" x2="118.8" y2="63.36" class="broken"></line> + <line x1="124.08" y1="42.24" x2="124.08" y2="63.36" class="broken"></line> + <text x="128.04001" y="50.160004" >.:</text> + <line x1="113.520004" y1="60.72" x2="113.520004" y2="63.36" class="solid"></line> + <text x="133.32" y="60.72" >.</text> + <text x="143.88" y="60.72" >:</text> + <text x="101.64001" y="71.28001" >.::</text> + <text x="143.88" y="71.28001" >.:::</text> </svg> diff --git a/static/db/contributed/pattern/nipples.svg b/static/db/contributed/pattern/nipples.svg index d8d07536f1ae08e8ac3106fee9604e7193c4163a..18f47c15c65cfa6ab44584891d8989f9cab87592 100644 --- a/static/db/contributed/pattern/nipples.svg +++ b/static/db/contributed/pattern/nipples.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,30 +112,62 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <text x="33" y="7.92" >{</text> <line x1="36.960003" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <text x="80.520004" y="7.92" >{</text> + <line x1="84.48" y1="10.56" x2="95.04" y2="10.56" class="solid"></line> <text x="27.720001" y="18.480001" >{</text> <line x1="31.68" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> <line x1="42.24" y1="21.12" x2="52.800003" y2="21.12" class="solid"></line> + <text x="80.520004" y="18.480001" >{</text> + <line x1="84.48" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> <text x="22.44" y="29.04" >{</text> <line x1="26.400002" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> <text x="43.56" y="29.04" >{</text> <line x1="47.52" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <text x="80.520004" y="29.04" >{</text> + <line x1="84.48" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> <text x="17.16" y="39.600002" >{</text> <line x1="21.12" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <text x="48.84" y="39.600002" >{</text> <line x1="52.800003" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <text x="80.520004" y="39.600002" >{</text> + <line x1="84.48" y1="42.24" x2="95.04" y2="42.24" class="solid"></line> <text x="11.88" y="50.160004" >{</text> <line x1="15.84" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> <text x="54.120003" y="50.160004" >{</text> <line x1="58.08" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + <text x="80.520004" y="50.160004" >{</text> + <line x1="84.48" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> <text x="6.6000004" y="60.72" >{</text> <line x1="10.56" y1="63.36" x2="21.12" y2="63.36" class="solid"></line> <text x="59.4" y="60.72" >{</text> <line x1="63.36" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <text x="80.520004" y="60.72" >{</text> + <line x1="84.48" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> <text x="1.32" y="71.28001" >{</text> <line x1="5.28" y1="73.920006" x2="15.84" y2="73.920006" class="solid"></line> <text x="64.68" y="71.28001" >{</text> <line x1="68.64" y1="73.920006" x2="79.200005" y2="73.920006" class="solid"></line> + <text x="80.520004" y="71.28001" >{</text> + <line x1="84.48" y1="73.920006" x2="95.04" y2="73.920006" class="solid"></line> + <text x="143.88" y="29.04" >{</text> + <line x1="147.84001" y1="31.68" x2="163.68001" y2="31.68" class="solid"></line> + <text x="101.64001" y="39.600002" >{</text> + <line x1="105.600006" y1="42.24" x2="116.16" y2="42.24" class="solid"></line> + <text x="133.32" y="39.600002" >{</text> + <line x1="137.28" y1="42.24" x2="147.84001" y2="42.24" class="solid"></line> + <text x="112.200005" y="50.160004" >{</text> + <line x1="116.16" y1="52.800003" x2="126.72" y2="52.800003" class="solid"></line> + <text x="128.04001" y="50.160004" >{</text> + <line x1="132" y1="52.800003" x2="142.56001" y2="52.800003" class="solid"></line> + <text x="112.200005" y="60.72" >{</text> + <line x1="116.16" y1="63.36" x2="126.72" y2="63.36" class="solid"></line> + <text x="133.32" y="60.72" >{</text> + <line x1="137.28" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <text x="101.64001" y="71.28001" >{</text> + <line x1="105.600006" y1="73.920006" x2="116.16" y2="73.920006" class="solid"></line> + <text x="143.88" y="71.28001" >{</text> + <line x1="147.84001" y1="73.920006" x2="163.68001" y2="73.920006" class="solid"></line> </svg> diff --git a/static/db/contributed/pattern/os2.svg b/static/db/contributed/pattern/os2.svg index 053baf8e8760c33c6ca74766a44ecccf20c4bab3..05bcaf2dacd6ce4801f60da8aff6fe6750ddd5c5 100644 --- a/static/db/contributed/pattern/os2.svg +++ b/static/db/contributed/pattern/os2.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="142.56001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,28 +112,58 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="142.56001" height="84.48"></rect> <line x1="0" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <text x="17.16" y="7.92" >ooo</text> <line x1="31.68" y1="10.56" x2="52.800003" y2="10.56" class="solid"></line> + <text x="54.120003" y="7.92" >oo</text> + <line x1="63.36" y1="10.56" x2="137.28" y2="10.56" class="solid"></line> <line x1="0" y1="21.12" x2="5.28" y2="21.12" class="solid"></line> <text x="6.6000004" y="18.480001" >oo</text> <line x1="15.84" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> <text x="33" y="18.480001" >oo</text> <line x1="42.24" y1="21.12" x2="52.800003" y2="21.12" class="solid"></line> + <text x="54.120003" y="18.480001" >oooooo</text> + <line x1="84.48" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <text x="101.64001" y="18.480001" >ooooo</text> + <line x1="126.72" y1="21.12" x2="137.28" y2="21.12" class="solid"></line> <text x="1.32" y="29.04" >oo</text> <line x1="10.56" y1="31.68" x2="36.960003" y2="31.68" class="solid"></line> <text x="38.280003" y="29.04" >oo</text> <line x1="47.52" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <text x="54.120003" y="29.04" >oo</text> + <line x1="63.36" y1="31.68" x2="79.200005" y2="31.68" class="solid"></line> + <text x="80.520004" y="29.04" >oo</text> + <line x1="89.76" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> + <text x="96.36" y="29.04" >oo</text> + <line x1="105.600006" y1="31.68" x2="121.44" y2="31.68" class="solid"></line> + <text x="122.76" y="29.04" >oo</text> + <line x1="132" y1="31.68" x2="137.28" y2="31.68" class="solid"></line> <text x="1.32" y="39.600002" >ooooooooo</text> <line x1="47.52" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> + <text x="54.120003" y="39.600002" >oo</text> + <line x1="63.36" y1="42.24" x2="79.200005" y2="42.24" class="solid"></line> + <text x="80.520004" y="39.600002" >oo</text> + <line x1="89.76" y1="42.24" x2="95.04" y2="42.24" class="solid"></line> + <text x="96.36" y="39.600002" >oo</text> + <line x1="105.600006" y1="42.24" x2="137.28" y2="42.24" class="solid"></line> <text x="1.32" y="50.160004" >oo</text> <line x1="10.56" y1="52.800003" x2="36.960003" y2="52.800003" class="solid"></line> <text x="38.280003" y="50.160004" >oo</text> <line x1="47.52" y1="52.800003" x2="52.800003" y2="52.800003" class="solid"></line> + <text x="54.120003" y="50.160004" >oo</text> + <line x1="63.36" y1="52.800003" x2="79.200005" y2="52.800003" class="solid"></line> + <text x="80.520004" y="50.160004" >oo</text> + <line x1="89.76" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> + <text x="96.36" y="50.160004" >oo</text> + <line x1="105.600006" y1="52.800003" x2="137.28" y2="52.800003" class="solid"></line> <text x="1.32" y="60.72" >oo</text> <line x1="10.56" y1="63.36" x2="36.960003" y2="63.36" class="solid"></line> <text x="38.280003" y="60.72" >oo</text> <line x1="47.52" y1="63.36" x2="52.800003" y2="63.36" class="solid"></line> - <line x1="0" y1="73.920006" x2="52.800003" y2="73.920006" class="solid"></line> + <text x="54.120003" y="60.72" >oooooo</text> + <line x1="84.48" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <text x="101.64001" y="60.72" >ooooo</text> + <line x1="126.72" y1="63.36" x2="137.28" y2="63.36" class="solid"></line> + <line x1="0" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> </svg> diff --git a/static/db/contributed/pattern/pawp.svg b/static/db/contributed/pattern/pawp.svg index db06cf597fc28a79aaedd98e0967d805d10bbfff..349d929d3707ac1085f391eb6bdb5a03babb5034 100644 --- a/static/db/contributed/pattern/pawp.svg +++ b/static/db/contributed/pattern/pawp.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="126.72" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="126.72" height="84.48"></rect> <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> + <line x1="63.36" y1="63.36" x2="68.64" y2="63.36" class="solid"></line> <g> <line x1="10.56" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> <path d="M 10.56,21.12 A 10.56,10.56 0,0,0 10.56,31.68" class="nofill"></path> @@ -124,4 +142,43 @@ <line x1="36.960003" y1="73.920006" x2="42.24" y2="73.920006" class="solid"></line> <path d="M 42.24,63.36 A 10.56,10.56 0,0,1 42.24,73.920006" class="nofill"></path> </g> + <g> + <line x1="52.800003" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,0 52.800003,31.68" class="nofill"></path> + <line x1="52.800003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,1 58.08,31.68" class="nofill"></path> + <path d="M 52.800003,31.68 A 10.56,10.56 0,0,0 52.800003,42.24" class="nofill"></path> + <line x1="52.800003" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <path d="M 58.08,31.68 A 10.56,10.56 0,0,1 58.08,42.24" class="nofill"></path> + <path d="M 52.800003,42.24 A 10.56,10.56 0,0,0 52.800003,52.800003" class="nofill"></path> + <line x1="52.800003" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + <path d="M 52.800003,52.800003 A 10.56,10.56 0,0,0 52.800003,63.36" class="nofill"></path> + <line x1="52.800003" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> + <path d="M 58.08,52.800003 A 10.56,10.56 0,0,1 58.08,63.36" class="nofill"></path> + <path d="M 52.800003,63.36 A 10.56,10.56 0,0,0 52.800003,73.920006" class="nofill"></path> + <line x1="52.800003" y1="73.920006" x2="73.920006" y2="73.920006" class="solid"></line> + <line x1="63.36" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <path d="M 68.64,42.24 A 10.56,10.56 0,0,1 68.64,52.800003" class="nofill"></path> + <line x1="73.920006" y1="52.800003" x2="79.200005" y2="52.800003" class="solid"></line> + <path d="M 73.920006,52.800003 A 10.56,10.56 0,0,0 73.920006,63.36" class="nofill"></path> + <line x1="73.920006" y1="63.36" x2="79.200005" y2="63.36" class="solid"></line> + <path d="M 79.200005,52.800003 A 10.56,10.56 0,0,1 79.200005,63.36" class="nofill"></path> + <path d="M 73.920006,63.36 A 10.56,10.56 0,0,1 73.920006,73.920006" class="nofill"></path> + </g> + <g> + <line x1="100.32001" y1="42.24" x2="116.16" y2="42.24" class="solid"></line> + <path d="M 100.32001,42.24 A 10.56,10.56 0,0,0 100.32001,52.800003" class="nofill"></path> + <line x1="100.32001" y1="52.800003" x2="116.16" y2="52.800003" class="solid"></line> + <path d="M 116.16,42.24 A 10.56,10.56 0,0,1 116.16,52.800003" class="nofill"></path> + </g> + <g> + <line x1="89.76" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,0 89.76,63.36" class="nofill"></path> + <line x1="89.76" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> + <path d="M 95.04,52.800003 A 10.56,10.56 0,0,1 95.04,63.36" class="nofill"></path> + <path d="M 95.04,63.36 A 10.56,10.56 0,0,0 95.04,73.920006" class="nofill"></path> + <line x1="95.04" y1="73.920006" x2="116.16" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="116.16" y2="63.36" class="solid"></line> + <path d="M 116.16,63.36 A 10.56,10.56 0,0,1 116.16,73.920006" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/pattern/peaks.svg b/static/db/contributed/pattern/peaks.svg index d0a736d4f052917b567e381f9a02112a77cb72cd..5924f3e734b22ff1ff25f087a1ed050afa3488c8 100644 --- a/static/db/contributed/pattern/peaks.svg +++ b/static/db/contributed/pattern/peaks.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <line x1="36.960003" y1="0" x2="0" y2="73.920006" class="solid"></line> <text x="33" y="18.480001" >^</text> <text x="27.720001" y="29.04" >^</text> @@ -104,20 +121,59 @@ <text x="11.88" y="60.72" >^^</text> <text x="6.6000004" y="71.28001" >^^</text> <text x="38.280003" y="7.92" >^</text> + <line x1="84.48" y1="0" x2="79.200005" y2="10.56" class="solid"></line> + <polygon points="83.82,7.92 88.44,2.64 88.44,9.900001" class="filled"></polygon> + <line x1="85.8" y1="7.92" x2="79.200005" y2="21.12" class="solid"></line> + <text x="91.08" y="7.92" >^</text> <text x="43.56" y="18.480001" >^</text> <polygon points="46.86,18.480001 51.480003,13.200001 51.480003,20.460001" class="filled"></polygon> <line x1="48.84" y1="18.480001" x2="42.24" y2="31.68" class="solid"></line> + <polygon points="83.82,18.480001 88.44,13.200001 88.44,20.460001" class="filled"></polygon> + <line x1="85.8" y1="18.480001" x2="79.200005" y2="31.68" class="solid"></line> + <text x="91.08" y="18.480001" >^</text> <text x="48.84" y="29.04" >^</text> <polygon points="52.140003,29.04 56.760002,23.76 56.760002,31.02" class="filled"></polygon> <line x1="54.120003" y1="29.04" x2="47.52" y2="42.24" class="solid"></line> + <polygon points="83.82,29.04 88.44,23.76 88.44,31.02" class="filled"></polygon> + <line x1="85.8" y1="29.04" x2="79.200005" y2="42.24" class="solid"></line> + <text x="91.08" y="29.04" >^</text> <text x="54.120003" y="39.600002" >^</text> <polygon points="57.420002,39.600002 62.04,34.32 62.04,41.58" class="filled"></polygon> <line x1="59.4" y1="39.600002" x2="52.800003" y2="52.800003" class="solid"></line> + <polygon points="83.82,39.600002 88.44,34.32 88.44,41.58" class="filled"></polygon> + <line x1="85.8" y1="39.600002" x2="79.200005" y2="52.800003" class="solid"></line> + <text x="91.08" y="39.600002" >^</text> <text x="59.4" y="50.160004" >^</text> <polygon points="62.7,50.160004 67.32,44.88 67.32,52.140003" class="filled"></polygon> <line x1="64.68" y1="50.160004" x2="58.08" y2="63.36" class="solid"></line> + <polygon points="83.82,50.160004 88.44,44.88 88.44,52.140003" class="filled"></polygon> + <line x1="85.8" y1="50.160004" x2="79.200005" y2="63.36" class="solid"></line> + <text x="91.08" y="50.160004" >^</text> <text x="64.68" y="60.72" >^</text> <polygon points="67.98,60.72 72.600006,55.440002 72.600006,62.7" class="filled"></polygon> <line x1="69.96" y1="60.72" x2="63.36" y2="73.920006" class="solid"></line> + <polygon points="83.82,60.72 88.44,55.440002 88.44,62.7" class="filled"></polygon> + <line x1="85.8" y1="60.72" x2="79.200005" y2="73.920006" class="solid"></line> + <text x="91.08" y="60.72" >^</text> <text x="69.96" y="71.28001" >^^</text> + <text x="85.8" y="71.28001" >^^</text> + <line x1="147.84001" y1="21.12" x2="142.56001" y2="31.68" class="solid"></line> + <text x="149.16" y="29.04" >^^^</text> + <line x1="105.600006" y1="31.68" x2="100.32001" y2="42.24" class="solid"></line> + <text x="106.920006" y="39.600002" >^^</text> + <line x1="137.28" y1="31.68" x2="126.72" y2="52.800003" class="solid"></line> + <text x="133.32" y="50.160004" >^</text> + <text x="138.6" y="39.600002" >^^</text> + <line x1="116.16" y1="42.24" x2="110.880005" y2="52.800003" class="solid"></line> + <polygon points="115.50001,50.160004 120.12,44.88 120.12,52.140003" class="filled"></polygon> + <line x1="117.48" y1="50.160004" x2="110.880005" y2="63.36" class="solid"></line> + <text x="122.76" y="50.160004" >^</text> + <polygon points="136.62001,50.160004 141.24,44.88 141.24,52.140003" class="filled"></polygon> + <line x1="138.6" y1="50.160004" x2="132" y2="63.36" class="solid"></line> + <text x="117.48" y="60.72" >^^</text> + <text x="138.6" y="60.72" >^^</text> + <line x1="105.600006" y1="63.36" x2="100.32001" y2="73.920006" class="solid"></line> + <text x="106.920006" y="71.28001" >^^</text> + <line x1="147.84001" y1="63.36" x2="142.56001" y2="73.920006" class="solid"></line> + <text x="149.16" y="71.28001" >^^^</text> </svg> diff --git a/static/db/contributed/pattern/relief.svg b/static/db/contributed/pattern/relief.svg index 91a3d64cc08ba695b57798aa7f53ec59c14d5a83..971d35855afb7cceefeb165ef32cd31da666689e 100644 --- a/static/db/contributed/pattern/relief.svg +++ b/static/db/contributed/pattern/relief.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,29 +112,65 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> - <line x1="0" y1="73.920006" x2="58.08" y2="73.920006" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="179.52" height="84.48"></rect> + <line x1="0" y1="73.920006" x2="174.24" y2="73.920006" class="solid"></line> <g> - <line x1="0" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="0" y1="10.56" x2="174.24" y2="10.56" class="solid"></line> <line x1="0" y1="21.12" x2="5.28" y2="21.12" class="solid"></line> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> <line x1="7.92" y1="15.84" x2="44.88" y2="15.84" class="broken"></line> <line x1="42.24" y1="10.56" x2="52.800003" y2="31.68" class="solid"></line> <line x1="47.52" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="63.36" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> + <line x1="60.72" y1="15.84" x2="102.96001" y2="15.84" class="broken"></line> + <line x1="100.32001" y1="10.56" x2="110.880005" y2="31.68" class="solid"></line> + <line x1="105.600006" y1="21.12" x2="121.44" y2="21.12" class="solid"></line> + <line x1="126.72" y1="10.56" x2="116.16" y2="31.68" class="solid"></line> + <line x1="124.08" y1="15.84" x2="161.04001" y2="15.84" class="broken"></line> + <line x1="158.40001" y1="10.56" x2="168.96" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="174.24" y2="21.12" class="solid"></line> <line x1="2.64" y1="26.400002" x2="18.480001" y2="26.400002" class="broken"></line> <line x1="15.84" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <line x1="21.12" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> <line x1="36.960003" y1="21.12" x2="31.68" y2="31.68" class="solid"></line> <line x1="34.32" y1="26.400002" x2="50.160004" y2="26.400002" class="broken"></line> <line x1="52.800003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <line x1="63.36" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> + <line x1="60.72" y1="26.400002" x2="76.560005" y2="26.400002" class="broken"></line> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="95.04" y1="21.12" x2="89.76" y2="31.68" class="solid"></line> + <line x1="92.4" y1="26.400002" x2="108.240005" y2="26.400002" class="broken"></line> + <line x1="110.880005" y1="31.68" x2="116.16" y2="31.68" class="solid"></line> + <line x1="118.8" y1="26.400002" x2="134.64" y2="26.400002" class="broken"></line> + <line x1="132" y1="21.12" x2="137.28" y2="31.68" class="solid"></line> + <line x1="137.28" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="153.12001" y1="21.12" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="150.48001" y1="26.400002" x2="166.32" y2="26.400002" class="broken"></line> + <line x1="168.96" y1="31.68" x2="174.24" y2="31.68" class="solid"></line> </g> <g> <line x1="5.28" y1="31.68" x2="0" y2="42.24" class="solid"></line> <line x1="2.64" y1="36.960003" x2="50.160004" y2="36.960003" class="broken"></line> <line x1="47.52" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> <line x1="52.800003" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> - </g> - <g> + <line x1="63.36" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + <line x1="60.72" y1="36.960003" x2="102.96001" y2="36.960003" class="broken"></line> + <line x1="100.32001" y1="31.68" x2="110.880005" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="116.16" y2="42.24" class="solid"></line> + <line x1="121.44" y1="31.68" x2="116.16" y2="42.24" class="solid"></line> + <line x1="118.8" y1="36.960003" x2="134.64" y2="36.960003" class="broken"></line> + <line x1="132" y1="31.68" x2="137.28" y2="42.24" class="solid"></line> + <line x1="137.28" y1="42.24" x2="174.24" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="52.800003" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="42.24" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="118.8" y1="47.52" x2="134.64" y2="47.52" class="broken"></line> + <line x1="132" y1="42.24" x2="137.28" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="147.84001" y2="52.800003" class="solid"></line> + <line x1="153.12001" y1="42.24" x2="147.84001" y2="52.800003" class="solid"></line> + <line x1="150.48001" y1="47.52" x2="166.32" y2="47.52" class="broken"></line> + <line x1="163.68001" y1="42.24" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="52.800003" x2="174.24" y2="52.800003" class="solid"></line> <line x1="5.28" y1="42.24" x2="0" y2="52.800003" class="solid"></line> <line x1="2.64" y1="47.52" x2="18.480001" y2="47.52" class="broken"></line> <line x1="15.84" y1="42.24" x2="21.12" y2="52.800003" class="solid"></line> @@ -126,6 +179,12 @@ <line x1="34.32" y1="47.52" x2="50.160004" y2="47.52" class="broken"></line> <line x1="47.52" y1="42.24" x2="52.800003" y2="52.800003" class="solid"></line> <line x1="52.800003" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="63.36" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="60.72" y1="47.52" x2="76.560005" y2="47.52" class="broken"></line> + <line x1="73.920006" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="47.52" x2="108.240005" y2="47.52" class="broken"></line> </g> <g> <line x1="5.28" y1="52.800003" x2="0" y2="63.36" class="solid"></line> @@ -136,5 +195,13 @@ <line x1="34.32" y1="58.08" x2="50.160004" y2="58.08" class="broken"></line> <line x1="47.52" y1="52.800003" x2="52.800003" y2="63.36" class="solid"></line> <line x1="52.800003" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> + <line x1="63.36" y1="52.800003" x2="58.08" y2="63.36" class="solid"></line> + <line x1="60.72" y1="58.08" x2="102.96001" y2="58.08" class="broken"></line> + <line x1="100.32001" y1="52.800003" x2="105.600006" y2="63.36" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="121.44" y2="63.36" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="121.44" y2="63.36" class="solid"></line> + <line x1="124.08" y1="58.08" x2="161.04001" y2="58.08" class="broken"></line> + <line x1="158.40001" y1="52.800003" x2="163.68001" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="174.24" y2="63.36" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/pattern/relief2.svg b/static/db/contributed/pattern/relief2.svg index 930b5fa1641882650e6af6b773d210c9c1fd7555..3c0648459a17af2e7d775d3436c8cdb606b053c8 100644 --- a/static/db/contributed/pattern/relief2.svg +++ b/static/db/contributed/pattern/relief2.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,20 +112,32 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="179.52" height="84.48"></rect> <line x1="0" y1="0" x2="5.28" y2="10.56" class="solid"></line> - <line x1="42.24" y1="0" x2="58.08" y2="31.68" class="solid"></line> - <line x1="47.52" y1="0" x2="58.08" y2="21.12" class="solid"></line> <line x1="52.800003" y1="0" x2="58.08" y2="10.56" class="solid"></line> + <line x1="105.600006" y1="0" x2="116.16" y2="21.12" class="solid"></line> + <line x1="116.16" y1="0" x2="121.44" y2="10.56" class="solid"></line> + <line x1="158.40001" y1="0" x2="174.24" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="0" x2="174.24" y2="21.12" class="solid"></line> + <line x1="168.96" y1="0" x2="174.24" y2="10.56" class="solid"></line> <line x1="42.24" y1="21.12" x2="31.68" y2="42.24" class="solid"></line> - <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> - <line x1="52.800003" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="89.76" y2="42.24" class="solid"></line> + <line x1="132" y1="31.68" x2="121.44" y2="52.800003" class="solid"></line> + <line x1="163.68001" y1="31.68" x2="174.24" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="31.68" x2="174.24" y2="42.24" class="solid"></line> <line x1="21.12" y1="52.800003" x2="31.68" y2="73.920006" class="solid"></line> <line x1="21.12" y1="63.36" x2="26.400002" y2="73.920006" class="solid"></line> - <line x1="52.800003" y1="52.800003" x2="58.08" y2="63.36" class="solid"></line> + <line x1="105.600006" y1="52.800003" x2="116.16" y2="73.920006" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="110.880005" y1="52.800003" x2="121.44" y2="73.920006" class="solid"></line> + <line x1="163.68001" y1="52.800003" x2="174.24" y2="73.920006" class="solid"></line> + <line x1="168.96" y1="52.800003" x2="174.24" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="63.36" x2="168.96" y2="73.920006" class="solid"></line> <line x1="15.84" y1="63.36" x2="21.12" y2="73.920006" class="solid"></line> <line x1="47.52" y1="63.36" x2="52.800003" y2="73.920006" class="solid"></line> <line x1="52.800003" y1="63.36" x2="58.08" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="105.600006" y2="73.920006" class="solid"></line> + <line x1="158.40001" y1="63.36" x2="163.68001" y2="73.920006" class="solid"></line> <g> <line x1="5.28" y1="0" x2="10.56" y2="10.56" class="solid"></line> <line x1="0" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> @@ -143,6 +172,97 @@ <line x1="31.68" y1="0" x2="36.960003" y2="10.56" class="solid"></line> <line x1="36.960003" y1="10.56" x2="31.68" y2="21.12" class="solid"></line> </g> + <g> + <line x1="42.24" y1="0" x2="58.08" y2="31.68" class="solid"></line> + <line x1="63.36" y1="0" x2="68.64" y2="10.56" class="solid"></line> + <line x1="68.64" y1="10.56" x2="58.08" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="47.52" y1="0" x2="58.08" y2="21.12" class="solid"></line> + <line x1="58.08" y1="0" x2="63.36" y2="10.56" class="solid"></line> + <line x1="63.36" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="0" x2="73.920006" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="58.08" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="73.920006" y1="0" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="79.200005" y1="10.56" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="79.200005" y1="0" x2="84.48" y2="10.56" class="solid"></line> + <line x1="84.48" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="84.48" y2="31.68" class="solid"></line> + <line x1="84.48" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="84.48" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="0" x2="89.76" y2="10.56" class="solid"></line> + <line x1="89.76" y1="10.56" x2="84.48" y2="21.12" class="solid"></line> + <line x1="95.04" y1="0" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="100.32001" y1="10.56" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="21.12" x2="89.76" y2="31.68" class="solid"></line> + <line x1="105.600006" y1="21.12" x2="84.48" y2="63.36" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="63.36" x2="89.76" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="89.76" y1="0" x2="95.04" y2="10.56" class="solid"></line> + <line x1="95.04" y1="10.56" x2="89.76" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="0" x2="116.16" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="0" x2="121.44" y2="21.12" class="solid"></line> + <line x1="121.44" y1="0" x2="126.72" y2="10.56" class="solid"></line> + <line x1="126.72" y1="10.56" x2="116.16" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="0" x2="132" y2="10.56" class="solid"></line> + <line x1="132" y1="10.56" x2="116.16" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="116.16" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="132" y1="0" x2="137.28" y2="10.56" class="solid"></line> + <line x1="137.28" y1="10.56" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="132" y1="42.24" x2="121.44" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="0" x2="142.56001" y2="10.56" class="solid"></line> + <line x1="142.56001" y1="10.56" x2="137.28" y2="21.12" class="solid"></line> + <line x1="137.28" y1="21.12" x2="147.84001" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="142.56001" y1="0" x2="147.84001" y2="10.56" class="solid"></line> + <line x1="147.84001" y1="10.56" x2="142.56001" y2="21.12" class="solid"></line> + <line x1="153.12001" y1="0" x2="158.40001" y2="10.56" class="solid"></line> + <line x1="158.40001" y1="10.56" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="137.28" y1="31.68" x2="147.84001" y2="52.800003" class="solid"></line> + <line x1="153.12001" y1="42.24" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="142.56001" y1="63.36" x2="147.84001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="147.84001" y1="0" x2="153.12001" y2="10.56" class="solid"></line> + <line x1="153.12001" y1="10.56" x2="147.84001" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="158.40001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="153.12001" y1="31.68" x2="158.40001" y2="42.24" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="147.84001" y2="63.36" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="153.12001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="163.68001" y1="21.12" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="158.40001" y1="31.68" x2="163.68001" y2="42.24" class="solid"></line> + <line x1="163.68001" y1="42.24" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="158.40001" y2="73.920006" class="solid"></line> + </g> <g> <line x1="15.84" y1="31.68" x2="0" y2="63.36" class="solid"></line> <line x1="0" y1="63.36" x2="5.28" y2="73.920006" class="solid"></line> @@ -151,10 +271,31 @@ <line x1="21.12" y1="31.68" x2="5.28" y2="63.36" class="solid"></line> <line x1="5.28" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="31.68" x2="58.08" y2="63.36" class="solid"></line> + <line x1="52.800003" y1="52.800003" x2="63.36" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="79.200005" y1="31.68" x2="63.36" y2="63.36" class="solid"></line> + <line x1="63.36" y1="63.36" x2="68.64" y2="73.920006" class="solid"></line> + </g> <g> <line x1="47.52" y1="42.24" x2="36.960003" y2="63.36" class="solid"></line> <line x1="36.960003" y1="63.36" x2="42.24" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="100.32001" y1="42.24" x2="89.76" y2="63.36" class="solid"></line> + <line x1="89.76" y1="63.36" x2="95.04" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="42.24" x2="95.04" y2="63.36" class="solid"></line> + <line x1="95.04" y1="63.36" x2="100.32001" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="42.24" x2="142.56001" y2="52.800003" class="solid"></line> + <line x1="142.56001" y1="52.800003" x2="137.28" y2="63.36" class="solid"></line> + <line x1="137.28" y1="63.36" x2="142.56001" y2="73.920006" class="solid"></line> + </g> <g> <line x1="15.84" y1="52.800003" x2="10.56" y2="63.36" class="solid"></line> <line x1="10.56" y1="63.36" x2="15.84" y2="73.920006" class="solid"></line> @@ -163,4 +304,20 @@ <line x1="47.52" y1="52.800003" x2="42.24" y2="63.36" class="solid"></line> <line x1="42.24" y1="63.36" x2="47.52" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="52.800003" x2="68.64" y2="63.36" class="solid"></line> + <line x1="68.64" y1="63.36" x2="73.920006" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="79.200005" y1="52.800003" x2="73.920006" y2="63.36" class="solid"></line> + <line x1="73.920006" y1="63.36" x2="79.200005" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="132" y1="52.800003" x2="126.72" y2="63.36" class="solid"></line> + <line x1="126.72" y1="63.36" x2="132" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + <line x1="132" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/pattern/rev.svg b/static/db/contributed/pattern/rev.svg index fe1d64047ff9153207ac255b3a12f40adec4ef10..0e3e6614ddee835c7162b1b0692697bb8696a711 100644 --- a/static/db/contributed/pattern/rev.svg +++ b/static/db/contributed/pattern/rev.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,57 +112,97 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="126.72"></rect> - <line x1="0" y1="3.96" x2="52.800003" y2="3.96" class="solid"></line> - <line x1="0" y1="6.6000004" x2="52.800003" y2="6.6000004" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="132" height="126.72"></rect> + <line x1="0" y1="3.96" x2="126.72" y2="3.96" class="solid"></line> + <line x1="0" y1="6.6000004" x2="126.72" y2="6.6000004" class="solid"></line> <line x1="0" y1="14.52" x2="21.12" y2="14.52" class="solid"></line> <line x1="0" y1="17.16" x2="21.12" y2="17.16" class="solid"></line> - <line x1="31.68" y1="14.52" x2="52.800003" y2="14.52" class="solid"></line> - <line x1="31.68" y1="17.16" x2="52.800003" y2="17.16" class="solid"></line> + <line x1="31.68" y1="14.52" x2="58.08" y2="14.52" class="solid"></line> + <line x1="31.68" y1="17.16" x2="58.08" y2="17.16" class="solid"></line> + <line x1="68.64" y1="14.52" x2="126.72" y2="14.52" class="solid"></line> + <line x1="68.64" y1="17.16" x2="126.72" y2="17.16" class="solid"></line> <line x1="0" y1="25.080002" x2="15.84" y2="25.080002" class="solid"></line> <line x1="0" y1="27.720001" x2="15.84" y2="27.720001" class="solid"></line> - <line x1="36.960003" y1="25.080002" x2="52.800003" y2="25.080002" class="solid"></line> - <line x1="36.960003" y1="27.720001" x2="52.800003" y2="27.720001" class="solid"></line> + <line x1="36.960003" y1="25.080002" x2="58.08" y2="25.080002" class="solid"></line> + <line x1="36.960003" y1="27.720001" x2="58.08" y2="27.720001" class="solid"></line> + <line x1="68.64" y1="25.080002" x2="126.72" y2="25.080002" class="solid"></line> + <line x1="68.64" y1="27.720001" x2="126.72" y2="27.720001" class="solid"></line> <line x1="0" y1="35.640003" x2="10.56" y2="35.640003" class="solid"></line> <line x1="0" y1="38.280003" x2="10.56" y2="38.280003" class="solid"></line> - <line x1="42.24" y1="35.640003" x2="52.800003" y2="35.640003" class="solid"></line> - <line x1="42.24" y1="38.280003" x2="52.800003" y2="38.280003" class="solid"></line> + <line x1="42.24" y1="35.640003" x2="58.08" y2="35.640003" class="solid"></line> + <line x1="42.24" y1="38.280003" x2="58.08" y2="38.280003" class="solid"></line> + <line x1="68.64" y1="35.640003" x2="126.72" y2="35.640003" class="solid"></line> + <line x1="68.64" y1="38.280003" x2="126.72" y2="38.280003" class="solid"></line> <line x1="0" y1="46.2" x2="5.28" y2="46.2" class="solid"></line> <line x1="0" y1="48.84" x2="5.28" y2="48.84" class="solid"></line> - <line x1="47.52" y1="46.2" x2="52.800003" y2="46.2" class="solid"></line> - <line x1="47.52" y1="48.84" x2="52.800003" y2="48.84" class="solid"></line> + <line x1="47.52" y1="46.2" x2="58.08" y2="46.2" class="solid"></line> + <line x1="47.52" y1="48.84" x2="58.08" y2="48.84" class="solid"></line> + <line x1="68.64" y1="46.2" x2="100.32001" y2="46.2" class="solid"></line> + <line x1="68.64" y1="48.84" x2="100.32001" y2="48.84" class="solid"></line> + <line x1="116.16" y1="46.2" x2="126.72" y2="46.2" class="solid"></line> + <line x1="116.16" y1="48.84" x2="126.72" y2="48.84" class="solid"></line> <line x1="0" y1="56.760002" x2="5.28" y2="56.760002" class="solid"></line> <line x1="0" y1="59.4" x2="5.28" y2="59.4" class="solid"></line> - <line x1="47.52" y1="56.760002" x2="52.800003" y2="56.760002" class="solid"></line> - <line x1="47.52" y1="59.4" x2="52.800003" y2="59.4" class="solid"></line> + <line x1="47.52" y1="56.760002" x2="58.08" y2="56.760002" class="solid"></line> + <line x1="47.52" y1="59.4" x2="58.08" y2="59.4" class="solid"></line> + <line x1="79.200005" y1="56.760002" x2="95.04" y2="56.760002" class="solid"></line> + <line x1="79.200005" y1="59.4" x2="95.04" y2="59.4" class="solid"></line> + <line x1="105.600006" y1="56.760002" x2="110.880005" y2="56.760002" class="solid"></line> + <line x1="105.600006" y1="59.4" x2="110.880005" y2="59.4" class="solid"></line> + <line x1="121.44" y1="56.760002" x2="126.72" y2="56.760002" class="solid"></line> + <line x1="121.44" y1="59.4" x2="126.72" y2="59.4" class="solid"></line> <line x1="0" y1="67.32" x2="5.28" y2="67.32" class="solid"></line> <line x1="0" y1="69.96" x2="5.28" y2="69.96" class="solid"></line> - <line x1="47.52" y1="67.32" x2="52.800003" y2="67.32" class="solid"></line> - <line x1="47.52" y1="69.96" x2="52.800003" y2="69.96" class="solid"></line> + <line x1="47.52" y1="67.32" x2="58.08" y2="67.32" class="solid"></line> + <line x1="47.52" y1="69.96" x2="58.08" y2="69.96" class="solid"></line> + <line x1="84.48" y1="67.32" x2="95.04" y2="67.32" class="solid"></line> + <line x1="84.48" y1="69.96" x2="95.04" y2="69.96" class="solid"></line> + <line x1="105.600006" y1="67.32" x2="126.72" y2="67.32" class="solid"></line> + <line x1="105.600006" y1="69.96" x2="126.72" y2="69.96" class="solid"></line> <line x1="0" y1="77.880005" x2="5.28" y2="77.880005" class="solid"></line> <line x1="0" y1="80.520004" x2="5.28" y2="80.520004" class="solid"></line> <line x1="15.84" y1="77.880005" x2="36.960003" y2="77.880005" class="solid"></line> <line x1="15.84" y1="80.520004" x2="36.960003" y2="80.520004" class="solid"></line> - <line x1="47.52" y1="77.880005" x2="52.800003" y2="77.880005" class="solid"></line> - <line x1="47.52" y1="80.520004" x2="52.800003" y2="80.520004" class="solid"></line> + <line x1="47.52" y1="77.880005" x2="58.08" y2="77.880005" class="solid"></line> + <line x1="47.52" y1="80.520004" x2="58.08" y2="80.520004" class="solid"></line> + <line x1="84.48" y1="77.880005" x2="95.04" y2="77.880005" class="solid"></line> + <line x1="84.48" y1="80.520004" x2="95.04" y2="80.520004" class="solid"></line> + <line x1="105.600006" y1="77.880005" x2="126.72" y2="77.880005" class="solid"></line> + <line x1="105.600006" y1="80.520004" x2="126.72" y2="80.520004" class="solid"></line> <line x1="0" y1="88.44" x2="5.28" y2="88.44" class="solid"></line> <line x1="0" y1="91.08" x2="5.28" y2="91.08" class="solid"></line> <line x1="15.84" y1="88.44" x2="36.960003" y2="88.44" class="solid"></line> <line x1="15.84" y1="91.08" x2="36.960003" y2="91.08" class="solid"></line> - <line x1="47.52" y1="88.44" x2="52.800003" y2="88.44" class="solid"></line> - <line x1="47.52" y1="91.08" x2="52.800003" y2="91.08" class="solid"></line> + <line x1="47.52" y1="88.44" x2="58.08" y2="88.44" class="solid"></line> + <line x1="47.52" y1="91.08" x2="58.08" y2="91.08" class="solid"></line> + <line x1="84.48" y1="88.44" x2="95.04" y2="88.44" class="solid"></line> + <line x1="84.48" y1="91.08" x2="95.04" y2="91.08" class="solid"></line> + <line x1="105.600006" y1="88.44" x2="110.880005" y2="88.44" class="solid"></line> + <line x1="105.600006" y1="91.08" x2="110.880005" y2="91.08" class="solid"></line> + <line x1="121.44" y1="88.44" x2="126.72" y2="88.44" class="solid"></line> + <line x1="121.44" y1="91.08" x2="126.72" y2="91.08" class="solid"></line> <line x1="0" y1="99.00001" x2="5.28" y2="99.00001" class="solid"></line> <line x1="0" y1="101.64001" x2="5.28" y2="101.64001" class="solid"></line> <line x1="15.84" y1="99.00001" x2="36.960003" y2="99.00001" class="solid"></line> <line x1="15.84" y1="101.64001" x2="36.960003" y2="101.64001" class="solid"></line> - <line x1="47.52" y1="99.00001" x2="52.800003" y2="99.00001" class="solid"></line> - <line x1="47.52" y1="101.64001" x2="52.800003" y2="101.64001" class="solid"></line> - <line x1="0" y1="109.560005" x2="52.800003" y2="109.560005" class="solid"></line> - <line x1="0" y1="112.200005" x2="52.800003" y2="112.200005" class="solid"></line> + <line x1="47.52" y1="99.00001" x2="58.08" y2="99.00001" class="solid"></line> + <line x1="47.52" y1="101.64001" x2="58.08" y2="101.64001" class="solid"></line> + <line x1="79.200005" y1="99.00001" x2="100.32001" y2="99.00001" class="solid"></line> + <line x1="79.200005" y1="101.64001" x2="100.32001" y2="101.64001" class="solid"></line> + <line x1="116.16" y1="99.00001" x2="126.72" y2="99.00001" class="solid"></line> + <line x1="116.16" y1="101.64001" x2="126.72" y2="101.64001" class="solid"></line> + <line x1="0" y1="109.560005" x2="126.72" y2="109.560005" class="solid"></line> + <line x1="0" y1="112.200005" x2="126.72" y2="112.200005" class="solid"></line> <line x1="21.12" y1="35.640003" x2="31.68" y2="35.640003" class="solid"></line> <line x1="21.12" y1="38.280003" x2="31.68" y2="38.280003" class="solid"></line> <line x1="15.84" y1="46.2" x2="36.960003" y2="46.2" class="solid"></line> <line x1="15.84" y1="48.84" x2="36.960003" y2="48.84" class="solid"></line> <line x1="15.84" y1="56.760002" x2="36.960003" y2="56.760002" class="solid"></line> <line x1="15.84" y1="59.4" x2="36.960003" y2="59.4" class="solid"></line> + <line x1="68.64" y1="67.32" x2="73.920006" y2="67.32" class="solid"></line> + <line x1="68.64" y1="69.96" x2="73.920006" y2="69.96" class="solid"></line> + <line x1="68.64" y1="77.880005" x2="73.920006" y2="77.880005" class="solid"></line> + <line x1="68.64" y1="80.520004" x2="73.920006" y2="80.520004" class="solid"></line> + <line x1="68.64" y1="88.44" x2="73.920006" y2="88.44" class="solid"></line> + <line x1="68.64" y1="91.08" x2="73.920006" y2="91.08" class="solid"></line> </svg> diff --git a/static/db/contributed/pattern/ticks.svg b/static/db/contributed/pattern/ticks.svg index b91bf6229352128c09668796014c31ea9e16b8fc..b5d0209820b4ff7484225f5f75dc558655b146f0 100644 --- a/static/db/contributed/pattern/ticks.svg +++ b/static/db/contributed/pattern/ticks.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="205.92001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,20 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="73.920006"></rect> - <line x1="0" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="205.92001" height="73.920006"></rect> + <line x1="0" y1="63.36" x2="200.64001" y2="63.36" class="solid"></line> <g> <line x1="0" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="31.68" y1="0" x2="26.400002" y2="10.56" class="solid"></line> <line x1="31.68" y1="0" x2="36.960003" y2="10.56" class="solid"></line> <line x1="42.24" y1="0" x2="36.960003" y2="10.56" class="solid"></line> <line x1="42.24" y1="0" x2="47.52" y2="10.56" class="solid"></line> - <line x1="47.52" y1="10.56" x2="73.920006" y2="10.56" class="solid"></line> + <line x1="47.52" y1="10.56" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="84.48" y1="0" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="84.48" y1="0" x2="89.76" y2="10.56" class="solid"></line> + <line x1="95.04" y1="0" x2="89.76" y2="10.56" class="solid"></line> + <line x1="95.04" y1="0" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="100.32001" y1="10.56" x2="200.64001" y2="10.56" class="solid"></line> <line x1="0" y1="21.12" x2="15.84" y2="21.12" class="solid"></line> <line x1="21.12" y1="10.56" x2="15.84" y2="21.12" class="solid"></line> <line x1="21.12" y1="10.56" x2="26.400002" y2="21.12" class="solid"></line> @@ -113,7 +135,21 @@ <line x1="42.24" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> <line x1="52.800003" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> <line x1="52.800003" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> - <line x1="58.08" y1="21.12" x2="73.920006" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="84.48" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="84.48" y1="10.56" x2="89.76" y2="21.12" class="solid"></line> + <line x1="95.04" y1="10.56" x2="89.76" y2="21.12" class="solid"></line> + <line x1="95.04" y1="10.56" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="153.12001" y2="21.12" class="solid"></line> + <line x1="158.40001" y1="10.56" x2="153.12001" y2="21.12" class="solid"></line> + <line x1="158.40001" y1="10.56" x2="163.68001" y2="21.12" class="solid"></line> + <line x1="168.96" y1="10.56" x2="163.68001" y2="21.12" class="solid"></line> + <line x1="168.96" y1="10.56" x2="174.24" y2="21.12" class="solid"></line> + <line x1="179.52" y1="10.56" x2="174.24" y2="21.12" class="solid"></line> + <line x1="179.52" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="190.08" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="190.08" y1="10.56" x2="195.36" y2="21.12" class="solid"></line> + <line x1="195.36" y1="21.12" x2="200.64001" y2="21.12" class="solid"></line> <line x1="0" y1="31.68" x2="5.28" y2="31.68" class="solid"></line> <line x1="10.56" y1="21.12" x2="5.28" y2="31.68" class="solid"></line> <line x1="10.56" y1="21.12" x2="15.84" y2="31.68" class="solid"></line> @@ -124,7 +160,21 @@ <line x1="52.800003" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> <line x1="63.36" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> <line x1="63.36" y1="21.12" x2="68.64" y2="31.68" class="solid"></line> - <line x1="68.64" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + <line x1="68.64" y1="31.68" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="84.48" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="84.48" y1="21.12" x2="89.76" y2="31.68" class="solid"></line> + <line x1="95.04" y1="21.12" x2="89.76" y2="31.68" class="solid"></line> + <line x1="95.04" y1="21.12" x2="100.32001" y2="31.68" class="solid"></line> + <line x1="105.600006" y1="21.12" x2="100.32001" y2="31.68" class="solid"></line> + <line x1="105.600006" y1="21.12" x2="110.880005" y2="31.68" class="solid"></line> + <line x1="116.16" y1="21.12" x2="110.880005" y2="31.68" class="solid"></line> + <line x1="116.16" y1="21.12" x2="121.44" y2="31.68" class="solid"></line> + <line x1="121.44" y1="31.68" x2="142.56001" y2="31.68" class="solid"></line> + <line x1="147.84001" y1="21.12" x2="142.56001" y2="31.68" class="solid"></line> + <line x1="147.84001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="158.40001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="158.40001" y1="21.12" x2="163.68001" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="31.68" x2="200.64001" y2="31.68" class="solid"></line> <line x1="0" y1="42.24" x2="5.28" y2="42.24" class="solid"></line> <line x1="10.56" y1="31.68" x2="5.28" y2="42.24" class="solid"></line> <line x1="10.56" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> @@ -138,9 +188,22 @@ <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> <line x1="63.36" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> <line x1="63.36" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> - <line x1="68.64" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> - </g> - <g> + <line x1="68.64" y1="42.24" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="84.48" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="84.48" y1="31.68" x2="89.76" y2="42.24" class="solid"></line> + <line x1="95.04" y1="31.68" x2="89.76" y2="42.24" class="solid"></line> + <line x1="95.04" y1="31.68" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="42.24" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="116.16" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="116.16" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="126.72" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="126.72" y1="31.68" x2="132" y2="42.24" class="solid"></line> + <line x1="132" y1="42.24" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="147.84001" y1="31.68" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="147.84001" y1="31.68" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="158.40001" y1="31.68" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="158.40001" y1="31.68" x2="163.68001" y2="42.24" class="solid"></line> + <line x1="163.68001" y1="42.24" x2="200.64001" y2="42.24" class="solid"></line> <line x1="0" y1="52.800003" x2="5.28" y2="52.800003" class="solid"></line> <line x1="10.56" y1="42.24" x2="5.28" y2="52.800003" class="solid"></line> <line x1="10.56" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> @@ -151,6 +214,24 @@ <line x1="52.800003" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> <line x1="63.36" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> <line x1="63.36" y1="42.24" x2="68.64" y2="52.800003" class="solid"></line> - <line x1="68.64" y1="52.800003" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="52.800003" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="42.24" x2="100.32001" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="100.32001" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="110.880005" y2="52.800003" class="solid"></line> + <line x1="116.16" y1="42.24" x2="110.880005" y2="52.800003" class="solid"></line> + <line x1="116.16" y1="42.24" x2="121.44" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="52.800003" x2="153.12001" y2="52.800003" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="153.12001" y2="52.800003" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="163.68001" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="42.24" x2="163.68001" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="42.24" x2="174.24" y2="52.800003" class="solid"></line> + <line x1="179.52" y1="42.24" x2="174.24" y2="52.800003" class="solid"></line> + <line x1="179.52" y1="42.24" x2="184.8" y2="52.800003" class="solid"></line> + <line x1="190.08" y1="42.24" x2="184.8" y2="52.800003" class="solid"></line> + <line x1="190.08" y1="42.24" x2="195.36" y2="52.800003" class="solid"></line> + <line x1="195.36" y1="52.800003" x2="200.64001" y2="52.800003" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/pattern/ticksslant.svg b/static/db/contributed/pattern/ticksslant.svg index 9b10eec613a95e52d1b9b1d7366e2284d8b237a3..714d7d2843ad9e3520f5528968f889930ea2def0 100644 --- a/static/db/contributed/pattern/ticksslant.svg +++ b/static/db/contributed/pattern/ticksslant.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="105.600006" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="232.32" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,62 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="105.600006" height="73.920006"></rect> - <line x1="0" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="232.32" height="73.920006"></rect> + <line x1="0" y1="63.36" x2="200.64001" y2="63.36" class="solid"></line> <g> <line x1="26.400002" y1="10.56" x2="52.800003" y2="10.56" class="solid"></line> <line x1="58.08" y1="0" x2="47.52" y2="21.12" class="solid"></line> <line x1="58.08" y1="0" x2="79.200005" y2="42.24" class="solid"></line> - <line x1="79.200005" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> <line x1="68.64" y1="0" x2="58.08" y2="21.12" class="solid"></line> <line x1="68.64" y1="0" x2="84.48" y2="31.68" class="solid"></line> - <line x1="73.920006" y1="10.56" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="110.880005" y1="0" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="0" x2="132" y2="42.24" class="solid"></line> <line x1="52.800003" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> <line x1="73.920006" y1="10.56" x2="52.800003" y2="52.800003" class="solid"></line> - <line x1="79.200005" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="116.16" y2="31.68" class="solid"></line> + <line x1="121.44" y1="21.12" x2="174.24" y2="21.12" class="solid"></line> <line x1="79.200005" y1="21.12" x2="63.36" y2="52.800003" class="solid"></line> - <line x1="84.48" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="84.48" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="21.12" x2="116.16" y2="31.68" class="solid"></line> + <line x1="132" y1="21.12" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="132" y1="21.12" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="137.28" y1="31.68" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="179.52" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + <line x1="95.04" y1="31.68" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="121.44" y2="42.24" class="solid"></line> + <line x1="137.28" y1="31.68" x2="132" y2="42.24" class="solid"></line> + <line x1="142.56001" y1="42.24" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="158.40001" y1="31.68" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="174.24" y1="42.24" x2="211.20001" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="174.24" y1="42.24" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="184.8" y1="42.24" x2="179.52" y2="52.800003" class="solid"></line> + <line x1="184.8" y1="42.24" x2="190.08" y2="52.800003" class="solid"></line> + <line x1="195.36" y1="42.24" x2="190.08" y2="52.800003" class="solid"></line> + <line x1="195.36" y1="42.24" x2="200.64001" y2="52.800003" class="solid"></line> + <line x1="200.64001" y1="52.800003" x2="205.92001" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="0" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="0" x2="126.72" y2="10.56" class="solid"></line> + <line x1="126.72" y1="10.56" x2="227.04001" y2="10.56" class="solid"></line> + <line x1="179.52" y1="10.56" x2="158.40001" y2="52.800003" class="solid"></line> + <line x1="179.52" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="190.08" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="190.08" y1="10.56" x2="195.36" y2="21.12" class="solid"></line> + <line x1="200.64001" y1="10.56" x2="195.36" y2="21.12" class="solid"></line> + <line x1="200.64001" y1="10.56" x2="205.92001" y2="21.12" class="solid"></line> + <line x1="211.20001" y1="10.56" x2="205.92001" y2="21.12" class="solid"></line> + <line x1="211.20001" y1="10.56" x2="216.48001" y2="21.12" class="solid"></line> + <line x1="216.48001" y1="21.12" x2="221.76001" y2="21.12" class="solid"></line> + <line x1="174.24" y1="21.12" x2="179.52" y2="31.68" class="solid"></line> + <line x1="179.52" y1="31.68" x2="216.48001" y2="31.68" class="solid"></line> + <line x1="89.76" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="158.40001" y2="52.800003" class="solid"></line> <line x1="21.12" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> <line x1="42.24" y1="10.56" x2="21.12" y2="52.800003" class="solid"></line> <line x1="42.24" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> @@ -118,7 +176,7 @@ <line x1="52.800003" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> <line x1="52.800003" y1="31.68" x2="63.36" y2="52.800003" class="solid"></line> <line x1="63.36" y1="31.68" x2="73.920006" y2="52.800003" class="solid"></line> - <line x1="73.920006" y1="52.800003" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="52.800003" x2="84.48" y2="52.800003" class="solid"></line> <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="26.400002" y1="21.12" x2="10.56" y2="52.800003" class="solid"></line> <line x1="26.400002" y1="21.12" x2="36.960003" y2="42.24" class="solid"></line> diff --git a/static/db/contributed/pattern/usaflag.svg b/static/db/contributed/pattern/usaflag.svg index 62560b41580c749f6657c134a36352b9ba81f07b..26454887dc08c9050fc75ee4f06fe314aed15227 100644 --- a/static/db/contributed/pattern/usaflag.svg +++ b/static/db/contributed/pattern/usaflag.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="63.36"></rect> <line x1="7.92" y1="0" x2="7.92" y2="21.12" class="broken"></line> <line x1="13.200001" y1="0" x2="13.200001" y2="21.12" class="broken"></line> <line x1="18.480001" y1="0" x2="18.480001" y2="21.12" class="broken"></line> @@ -113,4 +130,30 @@ <line x1="5.28" y1="48.84" x2="21.12" y2="48.84" class="solid"></line> <line x1="31.68" y1="46.2" x2="47.52" y2="46.2" class="solid"></line> <line x1="31.68" y1="48.84" x2="47.52" y2="48.84" class="solid"></line> + <line x1="55.440002" y1="0" x2="55.440002" y2="21.12" class="broken"></line> + <line x1="60.72" y1="0" x2="60.72" y2="21.12" class="broken"></line> + <line x1="66" y1="0" x2="66" y2="21.12" class="broken"></line> + <line x1="68.64" y1="3.96" x2="89.76" y2="3.96" class="solid"></line> + <line x1="68.64" y1="6.6000004" x2="89.76" y2="6.6000004" class="solid"></line> + <line x1="79.200005" y1="14.52" x2="95.04" y2="14.52" class="solid"></line> + <line x1="79.200005" y1="17.16" x2="95.04" y2="17.16" class="solid"></line> + <line x1="52.800003" y1="25.080002" x2="89.76" y2="25.080002" class="solid"></line> + <line x1="52.800003" y1="27.720001" x2="89.76" y2="27.720001" class="solid"></line> + <line x1="52.800003" y1="35.640003" x2="68.64" y2="35.640003" class="solid"></line> + <line x1="52.800003" y1="38.280003" x2="68.64" y2="38.280003" class="solid"></line> + <line x1="79.200005" y1="35.640003" x2="95.04" y2="35.640003" class="solid"></line> + <line x1="79.200005" y1="38.280003" x2="95.04" y2="38.280003" class="solid"></line> + <line x1="52.800003" y1="46.2" x2="89.76" y2="46.2" class="solid"></line> + <line x1="52.800003" y1="48.84" x2="89.76" y2="48.84" class="solid"></line> + <line x1="102.96001" y1="0" x2="102.96001" y2="21.12" class="broken"></line> + <line x1="108.240005" y1="0" x2="108.240005" y2="21.12" class="broken"></line> + <line x1="113.520004" y1="0" x2="113.520004" y2="21.12" class="broken"></line> + <line x1="116.16" y1="3.96" x2="142.56001" y2="3.96" class="solid"></line> + <line x1="116.16" y1="6.6000004" x2="142.56001" y2="6.6000004" class="solid"></line> + <line x1="100.32001" y1="25.080002" x2="116.16" y2="25.080002" class="solid"></line> + <line x1="100.32001" y1="27.720001" x2="116.16" y2="27.720001" class="solid"></line> + <line x1="100.32001" y1="35.640003" x2="116.16" y2="35.640003" class="solid"></line> + <line x1="100.32001" y1="38.280003" x2="116.16" y2="38.280003" class="solid"></line> + <line x1="105.600006" y1="46.2" x2="142.56001" y2="46.2" class="solid"></line> + <line x1="105.600006" y1="48.84" x2="142.56001" y2="48.84" class="solid"></line> </svg> diff --git a/static/db/contributed/fill/alphabet.flf b/static/db/contributed/rest/alphabet.flf similarity index 100% rename from static/db/contributed/fill/alphabet.flf rename to static/db/contributed/rest/alphabet.flf diff --git a/static/db/contributed/fill/alphabet.svg b/static/db/contributed/rest/alphabet.svg similarity index 73% rename from static/db/contributed/fill/alphabet.svg rename to static/db/contributed/rest/alphabet.svg index 6c81907fa557d40f1905f1a04bd58fae80f93631..d781ed5ddbc31e38e9691aba8244374d7f798dc6 100644 --- a/static/db/contributed/fill/alphabet.svg +++ b/static/db/contributed/rest/alphabet.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="63.36"></rect> <text x="6.6000004" y="7.92" >AA</text> <text x="1.32" y="18.480001" >A</text> <text x="17.16" y="18.480001" >A</text> @@ -104,4 +121,13 @@ <text x="17.16" y="39.600002" >A</text> <text x="1.32" y="50.160004" >A</text> <text x="17.16" y="50.160004" >A</text> + <text x="27.720001" y="7.92" >b</text> + <text x="27.720001" y="18.480001" >b</text> + <text x="27.720001" y="29.04" >bbb</text> + <text x="27.720001" y="39.600002" >b</text> + <text x="43.56" y="39.600002" >b</text> + <text x="27.720001" y="50.160004" >bbb</text> + <text x="59.4" y="29.04" >ccc</text> + <text x="54.120003" y="39.600002" >c</text> + <text x="59.4" y="50.160004" >ccc</text> </svg> diff --git a/static/db/contributed/fill/basic.flf b/static/db/contributed/rest/basic.flf similarity index 100% rename from static/db/contributed/fill/basic.flf rename to static/db/contributed/rest/basic.flf diff --git a/static/db/contributed/fill/basic.svg b/static/db/contributed/rest/basic.svg similarity index 65% rename from static/db/contributed/fill/basic.svg rename to static/db/contributed/rest/basic.svg index 8150c0fe6a29b1649ba252831fab259563e0e0a9..3aa05b4a145b82e6b84471beca8b232845d9d414 100644 --- a/static/db/contributed/fill/basic.svg +++ b/static/db/contributed/rest/basic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="126.72" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="126.72" height="73.920006"></rect> <text x="6.6000004" y="7.92" >.d8b.</text> <text x="1.32" y="18.480001" >d8'</text> <text x="22.44" y="18.480001" >`8b</text> @@ -107,4 +124,22 @@ <text x="27.720001" y="50.160004" >88</text> <text x="1.32" y="60.72" >YP</text> <text x="27.720001" y="60.72" >YP</text> + <text x="43.56" y="7.92" >d8888b.</text> + <text x="43.56" y="18.480001" >88</text> + <text x="64.68" y="18.480001" >`8D</text> + <text x="43.56" y="29.04" >88oooY'</text> + <text x="43.56" y="39.600002" >88</text> + <line x1="52.800003" y1="36.960003" x2="68.64" y2="36.960003" class="broken"></line> + <text x="69.96" y="39.600002" >b.</text> + <text x="43.56" y="50.160004" >88</text> + <text x="69.96" y="50.160004" >8D</text> + <text x="43.56" y="60.72" >Y8888P'</text> + <text x="91.08" y="7.92" >.o88b.</text> + <text x="85.8" y="18.480001" >d8P</text> + <text x="112.200005" y="18.480001" >Y8</text> + <text x="85.8" y="29.04" >8P</text> + <text x="85.8" y="39.600002" >8b</text> + <text x="85.8" y="50.160004" >Y8b</text> + <text x="112.200005" y="50.160004" >d8</text> + <text x="91.08" y="60.72" >`Y88P'</text> </svg> diff --git a/static/db/contributed/fill/broadway.flf b/static/db/contributed/rest/broadway.flf similarity index 100% rename from static/db/contributed/fill/broadway.flf rename to static/db/contributed/rest/broadway.flf diff --git a/static/db/contributed/fill/broadway.svg b/static/db/contributed/rest/broadway.svg similarity index 53% rename from static/db/contributed/fill/broadway.svg rename to static/db/contributed/rest/broadway.svg index 5f6ea207fe29e734c92e68381c7d1b255bb5cad1..bc3e9cd68043958de7cfe7ecf90672eec276125f 100644 --- a/static/db/contributed/fill/broadway.svg +++ b/static/db/contributed/rest/broadway.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="290.40002" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="116.16" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="290.40002" height="126.72"></rect> <text x="48.84" y="18.480001" >.8.</text> <text x="43.56" y="29.04" >.888.</text> <text x="38.280003" y="39.600002" >:88888.</text> @@ -116,4 +133,51 @@ <text x="1.32" y="113.520004" >.8'</text> <text x="54.120003" y="113.520004" >`8.</text> <text x="75.240005" y="113.520004" >`88888.</text> + <text x="117.48" y="18.480001" >8</text> + <text x="117.48" y="29.04" >8</text> + <text x="117.48" y="39.600002" >8</text> + <text x="117.48" y="50.160004" >8</text> + <text x="117.48" y="60.72" >8</text> + <text x="117.48" y="71.28001" >8</text> + <text x="117.48" y="81.840004" >8</text> + <text x="117.48" y="92.4" >8</text> + <text x="117.48" y="102.96001" >8</text> + <text x="117.48" y="113.520004" >8</text> + <text x="128.04001" y="18.480001" >888888888o</text> + <text x="128.04001" y="29.04" >8888</text> + <text x="170.28001" y="29.04" >`88.</text> + <text x="128.04001" y="39.600002" >8888</text> + <text x="175.56001" y="39.600002" >`88</text> + <text x="128.04001" y="50.160004" >8888</text> + <text x="175.56001" y="50.160004" >,88</text> + <text x="128.04001" y="60.72" >8888.</text> + <text x="170.28001" y="60.72" >,88'</text> + <text x="128.04001" y="71.28001" >8888888888</text> + <text x="128.04001" y="81.840004" >8888</text> + <text x="170.28001" y="81.840004" >`88.</text> + <text x="128.04001" y="92.4" >8888</text> + <text x="180.84001" y="92.4" >88</text> + <text x="128.04001" y="102.96001" >8888</text> + <text x="170.28001" y="102.96001" >,88'</text> + <text x="128.04001" y="113.520004" >888888888P</text> + <text x="217.8" y="18.480001" >,o888888o.</text> + <text x="212.52" y="29.04" >8888</text> + <text x="260.04" y="29.04" >`88.</text> + <text x="212.52" y="39.600002" >8888</text> + <text x="270.6" y="39.600002" >`8.</text> + <text x="212.52" y="50.160004" >8888</text> + <text x="212.52" y="60.72" >8888</text> + <text x="212.52" y="71.28001" >8888</text> + <text x="212.52" y="81.840004" >8888</text> + <text x="212.52" y="92.4" >8888</text> + <text x="270.6" y="92.4" >.8'</text> + <text x="212.52" y="102.96001" >8888</text> + <text x="260.04" y="102.96001" >,88'</text> + <text x="217.8" y="113.520004" >`8888888P'</text> + <text x="196.68001" y="39.600002" >,8</text> + <text x="196.68001" y="50.160004" >88</text> + <text x="196.68001" y="60.72" >88</text> + <text x="196.68001" y="71.28001" >88</text> + <text x="196.68001" y="81.840004" >88</text> + <text x="196.68001" y="92.4" >`8</text> </svg> diff --git a/static/db/contributed/fill/colossal.flf b/static/db/contributed/rest/colossal.flf similarity index 100% rename from static/db/contributed/fill/colossal.flf rename to static/db/contributed/rest/colossal.flf diff --git a/static/db/contributed/fill/colossal.svg b/static/db/contributed/rest/colossal.svg similarity index 65% rename from static/db/contributed/fill/colossal.svg rename to static/db/contributed/rest/colossal.svg index 45dced028231afe81da7bb626d46e10ea5b0bda5..2ebc75a32a90959933cb694ccf88ef290808f796 100644 --- a/static/db/contributed/fill/colossal.svg +++ b/static/db/contributed/rest/colossal.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,17 +112,23 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="68.64" height="95.04"></rect> - <text x="38.280003" y="7.92" >d8888</text> - <text x="33" y="18.480001" >d88888</text> - <text x="27.720001" y="29.04" >d88P888</text> + <rect class="backdrop" x="0" y="0" width="153.12001" height="95.04"></rect> + <text x="38.280003" y="7.92" >d8888888</text> + <text x="33" y="18.480001" >d88888888</text> + <text x="27.720001" y="29.04" >d88P888888</text> <text x="22.44" y="39.600002" >d88P</text> - <text x="48.84" y="39.600002" >888</text> + <text x="48.84" y="39.600002" >88888888b.</text> <text x="17.16" y="50.160004" >d88P</text> - <text x="48.84" y="50.160004" >888</text> + <text x="48.84" y="50.160004" >888888</text> <text x="11.88" y="60.72" >d88P</text> - <text x="48.84" y="60.72" >888</text> - <text x="6.6000004" y="71.28001" >d8888888888</text> + <text x="48.84" y="60.72" >888888</text> + <text x="91.08" y="60.72" >888888</text> + <text x="6.6000004" y="71.28001" >d8888888888888</text> + <text x="85.8" y="71.28001" >d88PY88b.</text> <text x="1.32" y="81.840004" >d88P</text> - <text x="48.84" y="81.840004" >888</text> + <text x="48.84" y="81.840004" >88888888P</text> + <text x="117.48" y="81.840004" >Y8888P</text> + <text x="112.200005" y="39.600002" >.d8888b</text> + <text x="85.8" y="50.160004" >88bd88P</text> + <text x="96.36" y="81.840004" > </text> </svg> diff --git a/static/db/contributed/fill/computer.flf b/static/db/contributed/rest/computer.flf similarity index 100% rename from static/db/contributed/fill/computer.flf rename to static/db/contributed/rest/computer.flf diff --git a/static/db/contributed/fill/computer.svg b/static/db/contributed/rest/computer.svg similarity index 71% rename from static/db/contributed/fill/computer.svg rename to static/db/contributed/rest/computer.svg index aa22f37730cba7590f8c87dcf403c5922e2ce65d..c05800d99285fb15b3d1a95e3b9918f7cf91c379 100644 --- a/static/db/contributed/fill/computer.svg +++ b/static/db/contributed/rest/computer.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="73.920006"></rect> <text x="1.32" y="7.92" >8</text> <text x="27.720001" y="7.92" >8</text> <text x="1.32" y="18.480001" >8</text> @@ -107,6 +124,19 @@ <text x="27.720001" y="50.160004" >8</text> <text x="1.32" y="60.72" >88</text> <text x="27.720001" y="60.72" >8</text> + <text x="38.280003" y="18.480001" >eeeee</text> + <text x="38.280003" y="29.04" >8</text> + <text x="59.4" y="29.04" >8</text> + <text x="38.280003" y="39.600002" >8eee8e</text> + <text x="38.280003" y="50.160004" >88</text> + <text x="64.68" y="50.160004" >8</text> + <text x="38.280003" y="60.72" >88eee8</text> + <text x="75.240005" y="18.480001" >eeee</text> + <text x="75.240005" y="29.04" >8</text> + <text x="91.08" y="29.04" >8</text> + <text x="75.240005" y="39.600002" >8e</text> + <text x="75.240005" y="50.160004" >88</text> + <text x="75.240005" y="60.72" >88e8</text> <text x="6.6000004" y="7.92" ></text> <text x="17.16" y="7.92" ></text> </svg> diff --git a/static/db/contributed/fill/contrast.flf b/static/db/contributed/rest/contrast.flf similarity index 100% rename from static/db/contributed/fill/contrast.flf rename to static/db/contributed/rest/contrast.flf diff --git a/static/db/contributed/fill/contrast.svg b/static/db/contributed/rest/contrast.svg similarity index 69% rename from static/db/contributed/fill/contrast.svg rename to static/db/contributed/rest/contrast.svg index 508b6459d27d1de55b1b972c3f8e889ce3e51961..45bddec33e6b3d5084b687335a9573942379e27b 100644 --- a/static/db/contributed/fill/contrast.svg +++ b/static/db/contributed/rest/contrast.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> - <text x="1.32" y="7.92" >..%%%%..</text> - <text x="1.32" y="18.480001" >.%%..%%.</text> - <text x="1.32" y="29.04" >.%%%%%%.</text> - <text x="1.32" y="39.600002" >.%%..%%.</text> - <text x="1.32" y="50.160004" >.%%..%%.</text> - <text x="1.32" y="60.72" >........</text> + <rect class="backdrop" x="0" y="0" width="132" height="73.920006"></rect> + <text x="1.32" y="7.92" >..%%%%...%%%%%....%%%%..</text> + <text x="1.32" y="18.480001" >.%%..%%..%%..%%..%%..%%.</text> + <text x="1.32" y="29.04" >.%%%%%%..%%%%%...%%.....</text> + <text x="1.32" y="39.600002" >.%%..%%..%%..%%..%%..%%.</text> + <text x="1.32" y="50.160004" >.%%..%%..%%%%%....%%%%..</text> + <text x="1.32" y="60.72" >........................</text> </svg> diff --git a/static/db/contributed/fill/cosmic.flf b/static/db/contributed/rest/cosmic.flf similarity index 100% rename from static/db/contributed/fill/cosmic.flf rename to static/db/contributed/rest/cosmic.flf diff --git a/static/db/contributed/fill/cosmic.svg b/static/db/contributed/rest/cosmic.svg similarity index 55% rename from static/db/contributed/fill/cosmic.svg rename to static/db/contributed/rest/cosmic.svg index b78ed7d3d8e30c52362b3a5ba63a605239946e3a..f58db11bee13008fb1f2c9227bcd76a8cad77e16 100644 --- a/static/db/contributed/fill/cosmic.svg +++ b/static/db/contributed/rest/cosmic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,42 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="179.52" height="73.920006"></rect> <text x="11.88" y="7.92" >:::.</text> + <text x="59.4" y="7.92" >:::::::.</text> + <text x="122.76" y="7.92" >.,</text> + <line x1="132" y1="5.28" x2="137.28" y2="5.28" class="solid"></line> + <text x="138.6" y="7.92" >:::::</text> <text x="11.88" y="18.480001" >;;`;;</text> + <text x="64.68" y="18.480001" >;;;</text> + <line x1="81.840004" y1="10.56" x2="81.840004" y2="13.200001" class="solid"></line> + <line x1="87.12" y1="10.56" x2="87.12" y2="13.200001" class="solid"></line> + <text x="91.08" y="18.480001" >;;'</text> + <text x="112.200005" y="18.480001" >,;;;'````</text> + <line x1="161.04001" y1="10.56" x2="161.04001" y2="13.200001" class="solid"></line> <text x="6.6000004" y="29.04" >,[[</text> <text x="27.720001" y="29.04" >'[[,</text> + <text x="64.68" y="29.04" >[[[</text> + <line x1="79.200005" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <text x="91.08" y="29.04" >[[</text> + <line x1="100.32001" y1="21.12" x2="105.600006" y2="31.68" class="solid"></line> + <text x="106.920006" y="29.04" >.[[[</text> <text x="1.32" y="39.600002" >c$$$cc$$$c</text> + <text x="64.68" y="39.600002" >$$</text> + <text x="96.36" y="39.600002" >Y$$$$$</text> <text x="6.6000004" y="50.160004" >888</text> <text x="38.280003" y="50.160004" >888,</text> + <line x1="58.08" y1="52.800003" x2="63.36" y2="52.800003" class="solid"></line> + <text x="64.68" y="50.160004" >88o,,od8P`88bo,</text> + <line x1="142.56001" y1="52.800003" x2="153.12001" y2="52.800003" class="solid"></line> + <text x="154.44" y="50.160004" >,o,</text> <text x="6.6000004" y="60.72" >YMM</text> <text x="48.84" y="60.72" >`</text> + <text x="69.96" y="60.72" >YUMMMP</text> + <text x="128.04001" y="60.72" >YUMMMMMP"</text> + <text x="75.240005" y="39.600002" ></text> + <text x="85.8" y="39.600002" ></text> <text x="38.280003" y="60.72" ></text> + <text x="59.4" y="60.72" ></text> + <text x="101.64001" y="60.72" > </text> </svg> diff --git a/static/db/contributed/fill/cosmike.flf b/static/db/contributed/rest/cosmike.flf similarity index 100% rename from static/db/contributed/fill/cosmike.flf rename to static/db/contributed/rest/cosmike.flf diff --git a/static/db/contributed/fill/cosmike.svg b/static/db/contributed/rest/cosmike.svg similarity index 55% rename from static/db/contributed/fill/cosmike.svg rename to static/db/contributed/rest/cosmike.svg index b78ed7d3d8e30c52362b3a5ba63a605239946e3a..f58db11bee13008fb1f2c9227bcd76a8cad77e16 100644 --- a/static/db/contributed/fill/cosmike.svg +++ b/static/db/contributed/rest/cosmike.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,42 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="179.52" height="73.920006"></rect> <text x="11.88" y="7.92" >:::.</text> + <text x="59.4" y="7.92" >:::::::.</text> + <text x="122.76" y="7.92" >.,</text> + <line x1="132" y1="5.28" x2="137.28" y2="5.28" class="solid"></line> + <text x="138.6" y="7.92" >:::::</text> <text x="11.88" y="18.480001" >;;`;;</text> + <text x="64.68" y="18.480001" >;;;</text> + <line x1="81.840004" y1="10.56" x2="81.840004" y2="13.200001" class="solid"></line> + <line x1="87.12" y1="10.56" x2="87.12" y2="13.200001" class="solid"></line> + <text x="91.08" y="18.480001" >;;'</text> + <text x="112.200005" y="18.480001" >,;;;'````</text> + <line x1="161.04001" y1="10.56" x2="161.04001" y2="13.200001" class="solid"></line> <text x="6.6000004" y="29.04" >,[[</text> <text x="27.720001" y="29.04" >'[[,</text> + <text x="64.68" y="29.04" >[[[</text> + <line x1="79.200005" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <text x="91.08" y="29.04" >[[</text> + <line x1="100.32001" y1="21.12" x2="105.600006" y2="31.68" class="solid"></line> + <text x="106.920006" y="29.04" >.[[[</text> <text x="1.32" y="39.600002" >c$$$cc$$$c</text> + <text x="64.68" y="39.600002" >$$</text> + <text x="96.36" y="39.600002" >Y$$$$$</text> <text x="6.6000004" y="50.160004" >888</text> <text x="38.280003" y="50.160004" >888,</text> + <line x1="58.08" y1="52.800003" x2="63.36" y2="52.800003" class="solid"></line> + <text x="64.68" y="50.160004" >88o,,od8P`88bo,</text> + <line x1="142.56001" y1="52.800003" x2="153.12001" y2="52.800003" class="solid"></line> + <text x="154.44" y="50.160004" >,o,</text> <text x="6.6000004" y="60.72" >YMM</text> <text x="48.84" y="60.72" >`</text> + <text x="69.96" y="60.72" >YUMMMP</text> + <text x="128.04001" y="60.72" >YUMMMMMP"</text> + <text x="75.240005" y="39.600002" ></text> + <text x="85.8" y="39.600002" ></text> <text x="38.280003" y="60.72" ></text> + <text x="59.4" y="60.72" ></text> + <text x="101.64001" y="60.72" > </text> </svg> diff --git a/static/db/contributed/fill/doh.flf b/static/db/contributed/rest/doh.flf similarity index 100% rename from static/db/contributed/fill/doh.flf rename to static/db/contributed/rest/doh.flf diff --git a/static/db/contributed/rest/doh.svg b/static/db/contributed/rest/doh.svg new file mode 100644 index 0000000000000000000000000000000000000000..6241cb8b451833348704cc53dcf9e71e3542ef70 --- /dev/null +++ b/static/db/contributed/rest/doh.svg @@ -0,0 +1,307 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="385.44" height="200.64001" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="385.44" height="200.64001"></rect> + <text x="170.28001" y="18.480001" >bbbbbbbb</text> + <text x="80.520004" y="29.04" >AAA</text> + <text x="170.28001" y="29.04" >b</text> + <line x1="176.88" y1="21.12" x2="176.88" y2="52.800003" class="broken"></line> + <line x1="182.16" y1="21.12" x2="182.16" y2="179.52" class="broken"></line> + <line x1="187.44" y1="21.12" x2="187.44" y2="179.52" class="broken"></line> + <line x1="192.72" y1="21.12" x2="192.72" y2="179.52" class="broken"></line> + <line x1="198.00002" y1="21.12" x2="198.00002" y2="179.52" class="broken"></line> + <line x1="203.28001" y1="21.12" x2="203.28001" y2="179.52" class="broken"></line> + <text x="207.24" y="29.04" >b</text> + <text x="75.240005" y="39.600002" >A</text> + <line x1="81.840004" y1="31.68" x2="81.840004" y2="84.48" class="broken"></line> + <line x1="87.12" y1="31.68" x2="87.12" y2="73.920006" class="broken"></line> + <line x1="92.4" y1="31.68" x2="92.4" y2="84.48" class="broken"></line> + <text x="96.36" y="39.600002" >A</text> + <text x="170.28001" y="39.600002" >b</text> + <text x="207.24" y="39.600002" >b</text> + <text x="69.96" y="50.160004" >A</text> + <line x1="76.560005" y1="42.24" x2="76.560005" y2="95.04" class="broken"></line> + <line x1="97.68" y1="42.24" x2="97.68" y2="95.04" class="broken"></line> + <text x="101.64001" y="50.160004" >A</text> + <text x="170.28001" y="50.160004" >b</text> + <text x="207.24" y="50.160004" >b</text> + <text x="64.68" y="60.72" >A</text> + <line x1="71.28001" y1="52.800003" x2="71.28001" y2="105.600006" class="broken"></line> + <line x1="102.96001" y1="52.800003" x2="102.96001" y2="105.600006" class="broken"></line> + <text x="106.920006" y="60.72" >A</text> + <text x="175.56001" y="60.72" >b</text> + <text x="207.24" y="60.72" >b</text> + <text x="59.4" y="71.28001" >A</text> + <line x1="66" y1="63.36" x2="66" y2="116.16" class="broken"></line> + <line x1="108.240005" y1="63.36" x2="108.240005" y2="116.16" class="broken"></line> + <text x="112.200005" y="71.28001" >A</text> + <text x="175.56001" y="71.28001" >b</text> + <text x="207.24" y="71.28001" >bbbbbbbbb</text> + <text x="297" y="71.28001" >cccccccccccccccc</text> + <text x="54.120003" y="81.840004" >A</text> + <line x1="60.72" y1="73.920006" x2="60.72" y2="137.28" class="broken"></line> + <text x="85.8" y="81.840004" >A</text> + <line x1="113.520004" y1="73.920006" x2="113.520004" y2="137.28" class="broken"></line> + <text x="117.48" y="81.840004" >A</text> + <text x="175.56001" y="81.840004" >b</text> + <line x1="208.56001" y1="73.920006" x2="208.56001" y2="95.04" class="broken"></line> + <line x1="213.84001" y1="73.920006" x2="213.84001" y2="95.04" class="broken"></line> + <line x1="219.12001" y1="73.920006" x2="219.12001" y2="95.04" class="broken"></line> + <line x1="224.40001" y1="73.920006" x2="224.40001" y2="95.04" class="broken"></line> + <line x1="229.68001" y1="73.920006" x2="229.68001" y2="95.04" class="broken"></line> + <line x1="234.96" y1="73.920006" x2="234.96" y2="105.600006" class="broken"></line> + <line x1="240.24" y1="73.920006" x2="240.24" y2="116.16" class="broken"></line> + <line x1="245.52" y1="73.920006" x2="245.52" y2="179.52" class="broken"></line> + <line x1="250.8" y1="73.920006" x2="250.8" y2="179.52" class="broken"></line> + <text x="254.76001" y="81.840004" >bb</text> + <text x="286.44" y="81.840004" >cc</text> + <line x1="298.32" y1="73.920006" x2="298.32" y2="179.52" class="broken"></line> + <line x1="303.6" y1="73.920006" x2="303.6" y2="179.52" class="broken"></line> + <line x1="308.88" y1="73.920006" x2="308.88" y2="116.16" class="broken"></line> + <line x1="314.16" y1="73.920006" x2="314.16" y2="105.600006" class="broken"></line> + <line x1="319.44" y1="73.920006" x2="319.44" y2="95.04" class="broken"></line> + <line x1="324.72" y1="73.920006" x2="324.72" y2="95.04" class="broken"></line> + <line x1="330" y1="73.920006" x2="330" y2="95.04" class="broken"></line> + <line x1="335.28" y1="73.920006" x2="335.28" y2="95.04" class="broken"></line> + <line x1="340.56003" y1="73.920006" x2="340.56003" y2="95.04" class="broken"></line> + <line x1="345.84003" y1="73.920006" x2="345.84003" y2="95.04" class="broken"></line> + <line x1="351.12003" y1="73.920006" x2="351.12003" y2="105.600006" class="broken"></line> + <line x1="356.40002" y1="73.920006" x2="356.40002" y2="105.600006" class="broken"></line> + <line x1="361.68002" y1="73.920006" x2="361.68002" y2="105.600006" class="broken"></line> + <line x1="366.96002" y1="73.920006" x2="366.96002" y2="105.600006" class="broken"></line> + <line x1="372.24002" y1="73.920006" x2="372.24002" y2="105.600006" class="broken"></line> + <text x="376.2" y="81.840004" >c</text> + <text x="48.84" y="92.4" >A</text> + <line x1="55.440002" y1="84.48" x2="55.440002" y2="137.28" class="broken"></line> + <text x="80.520004" y="92.4" >A</text> + <text x="91.08" y="92.4" >A</text> + <line x1="118.8" y1="84.48" x2="118.8" y2="137.28" class="broken"></line> + <text x="122.76" y="92.4" >A</text> + <text x="175.56001" y="92.4" >b</text> + <line x1="256.08002" y1="84.48" x2="256.08002" y2="179.52" class="broken"></line> + <line x1="261.36002" y1="84.48" x2="261.36002" y2="168.96" class="broken"></line> + <text x="265.32" y="92.4" >b</text> + <text x="281.16" y="92.4" >c</text> + <line x1="287.76" y1="84.48" x2="287.76" y2="168.96" class="broken"></line> + <line x1="293.04" y1="84.48" x2="293.04" y2="168.96" class="broken"></line> + <text x="376.2" y="92.4" >c</text> + <text x="43.56" y="102.96001" >A</text> + <line x1="50.160004" y1="95.04" x2="50.160004" y2="147.84001" class="broken"></line> + <text x="75.240005" y="102.96001" >A</text> + <text x="96.36" y="102.96001" >A</text> + <line x1="124.08" y1="95.04" x2="124.08" y2="147.84001" class="broken"></line> + <text x="128.04001" y="102.96001" >A</text> + <text x="175.56001" y="102.96001" >b</text> + <text x="207.24" y="102.96001" >bbbbb</text> + <line x1="266.64" y1="95.04" x2="266.64" y2="158.40001" class="broken"></line> + <text x="270.6" y="102.96001" >bc</text> + <line x1="282.48" y1="95.04" x2="282.48" y2="158.40001" class="broken"></line> + <text x="318.12003" y="102.96001" >cccccc</text> + <text x="376.2" y="102.96001" >c</text> + <text x="38.280003" y="113.520004" >A</text> + <line x1="44.88" y1="105.600006" x2="44.88" y2="158.40001" class="broken"></line> + <text x="69.96" y="113.520004" >A</text> + <text x="101.64001" y="113.520004" >A</text> + <line x1="129.36" y1="105.600006" x2="129.36" y2="158.40001" class="broken"></line> + <text x="133.32" y="113.520004" >A</text> + <text x="175.56001" y="113.520004" >b</text> + <text x="207.24" y="113.520004" >b</text> + <text x="233.64001" y="113.520004" >b</text> + <text x="270.6" y="113.520004" >bc</text> + <text x="312.84003" y="113.520004" >c</text> + <text x="344.52002" y="113.520004" >ccccccc</text> + <text x="33" y="124.08" >A</text> + <line x1="39.600002" y1="116.16" x2="39.600002" y2="168.96" class="broken"></line> + <text x="64.68" y="124.08" >AAAAAAAAA</text> + <line x1="134.64" y1="116.16" x2="134.64" y2="168.96" class="broken"></line> + <text x="138.6" y="124.08" >A</text> + <text x="175.56001" y="124.08" >b</text> + <text x="207.24" y="124.08" >b</text> + <text x="238.92001" y="124.08" >b</text> + <text x="270.6" y="124.08" >bc</text> + <text x="307.56" y="124.08" >c</text> + <text x="27.720001" y="134.64" >A</text> + <line x1="34.32" y1="126.72" x2="34.32" y2="179.52" class="broken"></line> + <text x="64.68" y="134.64" >:::::::::</text> + <line x1="139.92" y1="126.72" x2="139.92" y2="179.52" class="broken"></line> + <text x="143.88" y="134.64" >A</text> + <text x="175.56001" y="134.64" >b</text> + <text x="207.24" y="134.64" >b</text> + <text x="238.92001" y="134.64" >b</text> + <text x="270.6" y="134.64" >bc</text> + <text x="307.56" y="134.64" >c</text> + <text x="22.44" y="145.20001" >A</text> + <line x1="29.04" y1="137.28" x2="29.04" y2="179.52" class="broken"></line> + <text x="54.120003" y="145.20001" >AAAAAAAAAAAAA</text> + <line x1="145.20001" y1="137.28" x2="145.20001" y2="179.52" class="broken"></line> + <text x="149.16" y="145.20001" >A</text> + <text x="175.56001" y="145.20001" >b</text> + <text x="207.24" y="145.20001" >b</text> + <text x="238.92001" y="145.20001" >b</text> + <text x="270.6" y="145.20001" >bc</text> + <line x1="308.88" y1="137.28" x2="308.88" y2="179.52" class="broken"></line> + <text x="312.84003" y="145.20001" >c</text> + <text x="344.52002" y="145.20001" >ccccccc</text> + <text x="17.16" y="155.76001" >A</text> + <line x1="23.76" y1="147.84001" x2="23.76" y2="179.52" class="broken"></line> + <text x="48.84" y="155.76001" >A</text> + <text x="122.76" y="155.76001" >A</text> + <line x1="150.48001" y1="147.84001" x2="150.48001" y2="179.52" class="broken"></line> + <text x="154.44" y="155.76001" >A</text> + <text x="175.56001" y="155.76001" >b</text> + <text x="207.24" y="155.76001" >bbbbbb</text> + <line x1="240.24" y1="147.84001" x2="240.24" y2="179.52" class="broken"></line> + <text x="270.6" y="155.76001" >bc</text> + <line x1="314.16" y1="147.84001" x2="314.16" y2="179.52" class="broken"></line> + <text x="318.12003" y="155.76001" >cccccc</text> + <line x1="351.12003" y1="147.84001" x2="351.12003" y2="179.52" class="broken"></line> + <line x1="356.40002" y1="147.84001" x2="356.40002" y2="179.52" class="broken"></line> + <line x1="361.68002" y1="147.84001" x2="361.68002" y2="179.52" class="broken"></line> + <line x1="366.96002" y1="147.84001" x2="366.96002" y2="179.52" class="broken"></line> + <line x1="372.24002" y1="147.84001" x2="372.24002" y2="179.52" class="broken"></line> + <text x="376.2" y="155.76001" >c</text> + <text x="11.88" y="166.32" >A</text> + <line x1="18.480001" y1="158.40001" x2="18.480001" y2="179.52" class="broken"></line> + <text x="43.56" y="166.32" >A</text> + <text x="128.04001" y="166.32" >A</text> + <line x1="155.76001" y1="158.40001" x2="155.76001" y2="179.52" class="broken"></line> + <text x="159.72" y="166.32" >A</text> + <text x="175.56001" y="166.32" >b</text> + <line x1="208.56001" y1="158.40001" x2="208.56001" y2="179.52" class="broken"></line> + <line x1="213.84001" y1="158.40001" x2="213.84001" y2="179.52" class="broken"></line> + <line x1="219.12001" y1="158.40001" x2="219.12001" y2="179.52" class="broken"></line> + <line x1="224.40001" y1="158.40001" x2="224.40001" y2="179.52" class="broken"></line> + <line x1="229.68001" y1="158.40001" x2="229.68001" y2="179.52" class="broken"></line> + <line x1="234.96" y1="158.40001" x2="234.96" y2="179.52" class="broken"></line> + <text x="265.32" y="166.32" >b</text> + <text x="281.16" y="166.32" >c</text> + <line x1="319.44" y1="158.40001" x2="319.44" y2="179.52" class="broken"></line> + <line x1="324.72" y1="158.40001" x2="324.72" y2="179.52" class="broken"></line> + <line x1="330" y1="158.40001" x2="330" y2="179.52" class="broken"></line> + <line x1="335.28" y1="158.40001" x2="335.28" y2="179.52" class="broken"></line> + <line x1="340.56003" y1="158.40001" x2="340.56003" y2="179.52" class="broken"></line> + <line x1="345.84003" y1="158.40001" x2="345.84003" y2="179.52" class="broken"></line> + <text x="376.2" y="166.32" >c</text> + <text x="6.6000004" y="176.88" >A:</text> + <text x="38.280003" y="176.88" >A</text> + <text x="133.32" y="176.88" >A</text> + <text x="159.72" y="176.88" >:A</text> + <text x="175.56001" y="176.88" >b</text> + <text x="260.04" y="176.88" >b</text> + <text x="286.44" y="176.88" >cc</text> + <text x="376.2" y="176.88" >c</text> + <text x="1.32" y="187.44" >AAAAAAA</text> + <text x="138.6" y="187.44" >AAAAAAAbbbbbbbbbbbbbbbb</text> + <text x="297" y="187.44" >cccccccccccccccc</text> +</svg> diff --git a/static/db/contributed/fill/fraktur.flf b/static/db/contributed/rest/fraktur.flf similarity index 100% rename from static/db/contributed/fill/fraktur.flf rename to static/db/contributed/rest/fraktur.flf diff --git a/static/db/contributed/fill/fraktur.svg b/static/db/contributed/rest/fraktur.svg similarity index 68% rename from static/db/contributed/fill/fraktur.svg rename to static/db/contributed/rest/fraktur.svg index 0d4aa82d35f55d7ec5a37032d9d0e10e616f2d11..ed7dc5f30973293581d43c9a4f68954fb733b736 100644 --- a/static/db/contributed/fill/fraktur.svg +++ b/static/db/contributed/rest/fraktur.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="105.600006" height="137.28" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="227.04001" height="137.28" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="105.600006" height="137.28"></rect> + <rect class="backdrop" x="0" y="0" width="227.04001" height="137.28"></rect> <text x="27.720001" y="7.92" >..</text> <text x="11.88" y="18.480001" >:</text> <line x1="18.480001" y1="15.84" x2="23.76" y2="15.84" class="solid"></line> @@ -132,10 +149,41 @@ <line x1="87.12" y1="110.880005" x2="87.12" y2="110.880005" class="solid end_marked_circle"></line> <line x1="89.76" y1="110.880005" x2="95.04" y2="110.880005" class="broken"></line> <text x="38.280003" y="124.08" >`</text> - <text x="80.520004" y="124.08" >"</text> + <text x="143.88" y="7.92" >..</text> + <text x="112.200005" y="18.480001" >.</text> + <text x="122.76" y="18.480001" >uW8"</text> + <text x="112.200005" y="29.04" >`t888</text> + <text x="117.48" y="39.600002" >8888</text> + <text x="154.44" y="39.600002" >.</text> + <text x="117.48" y="50.160004" >9888.z88N</text> + <text x="117.48" y="60.72" >9888</text> + <text x="149.16" y="60.72" >888E</text> + <text x="117.48" y="71.28001" >9888</text> + <text x="149.16" y="71.28001" >888E</text> + <text x="117.48" y="81.840004" >9888</text> + <text x="149.16" y="81.840004" >888E</text> + <text x="117.48" y="92.4" >9888</text> + <text x="149.16" y="92.4" >888E</text> + <text x="112.200005" y="102.96001" >.8888</text> + <text x="149.16" y="102.96001" >888"</text> + <text x="117.48" y="113.520004" >`%888*%</text> + <text x="138.6" y="124.08" >`</text> + <text x="207.24" y="39.600002" >.</text> + <text x="180.84001" y="50.160004" >.udR88N</text> + <text x="175.56001" y="60.72" ><888'888k</text> + <text x="175.56001" y="71.28001" >9888</text> + <text x="201.96" y="71.28001" >'Y"</text> + <text x="175.56001" y="81.840004" >9888</text> + <text x="175.56001" y="92.4" >9888</text> + <text x="175.56001" y="102.96001" >?8888u..</text> + <line x1="221.76001" y1="95.04" x2="216.48001" y2="105.600006" class="solid"></line> + <text x="186.12001" y="113.520004" >8888P'</text> + <text x="191.40001" y="124.08" >"P'</text> <text x="91.08" y="18.480001" ></text> <text x="17.16" y="71.28001" >8 '888</text> + <text x="154.44" y="113.520004" > </text> <text x="43.56" y="124.08" > </text> + <text x="80.520004" y="124.08" > </text> <g> <path d="M 55.440002,100.32001 A 5.28,5.28 0,0,0 50.160004,105.600006" class="nofill"></path> <line x1="55.440002" y1="100.32001" x2="63.36" y2="100.32001" class="broken"></line> diff --git a/static/db/contributed/fill/gradient.flf b/static/db/contributed/rest/gradient.flf similarity index 100% rename from static/db/contributed/fill/gradient.flf rename to static/db/contributed/rest/gradient.flf diff --git a/static/db/contributed/fill/gradient.svg b/static/db/contributed/rest/gradient.svg similarity index 51% rename from static/db/contributed/fill/gradient.svg rename to static/db/contributed/rest/gradient.svg index 2c3c6793e06f497a8f898e218b19ae2ced39756f..3aea4f71fa474571203998aabd3ccd745e6b182e 100644 --- a/static/db/contributed/fill/gradient.svg +++ b/static/db/contributed/rest/gradient.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="137.28" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,28 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="137.28" height="95.04"></rect> <text x="1.32" y="7.92" >.eeeeee.</text> <line x1="44.88" y1="7.92" x2="44.88" y2="10.56" class="solid"></line> - <text x="1.32" y="18.480001" >@@@@@@@@:</text> + <text x="48.84" y="7.92" >eeeeeee.</text> + <line x1="92.4" y1="7.92" x2="92.4" y2="10.56" class="solid"></line> + <text x="96.36" y="7.92" >.eeeee</text> + <line x1="129.36" y1="7.92" x2="129.36" y2="10.56" class="solid"></line> + <text x="1.32" y="18.480001" >@@@@@@@@:@@@@@@@@:@@@@@@:</text> <text x="1.32" y="29.04" >%%%</text> <line x1="15.84" y1="26.400002" x2="26.400002" y2="26.400002" class="solid"></line> <text x="27.720001" y="29.04" >%%%</text> <line x1="42.24" y1="26.400002" x2="47.52" y2="26.400002" class="solid"></line> + <text x="48.84" y="29.04" >%%%</text> + <line x1="63.36" y1="26.400002" x2="73.920006" y2="26.400002" class="solid"></line> + <text x="75.240005" y="29.04" >%%%</text> + <line x1="89.76" y1="26.400002" x2="95.04" y2="26.400002" class="solid"></line> + <text x="96.36" y="29.04" >%%%</text> + <line x1="110.880005" y1="26.400002" x2="132" y2="26.400002" class="solid"></line> <text x="1.32" y="39.600002" >&&&&&&&&</text> <line x1="44.88" y1="36.960003" x2="44.88" y2="42.24" class="solid"></line> + <text x="48.84" y="39.600002" >&&&&&&&</text> + <text x="96.36" y="39.600002" >&&&</text> <line x1="2.64" y1="42.24" x2="2.64" y2="73.920006" class="broken"></line> <line x1="7.92" y1="42.24" x2="7.92" y2="73.920006" class="broken"></line> <line x1="13.200001" y1="42.24" x2="13.200001" y2="73.920006" class="broken"></line> @@ -114,12 +143,45 @@ <line x1="34.32" y1="42.24" x2="34.32" y2="73.920006" class="broken"></line> <line x1="39.600002" y1="42.24" x2="39.600002" y2="73.920006" class="broken"></line> <text x="43.56" y="50.160004" >*</text> + <line x1="50.160004" y1="42.24" x2="50.160004" y2="73.920006" class="broken"></line> + <line x1="55.440002" y1="42.24" x2="55.440002" y2="73.920006" class="broken"></line> + <line x1="60.72" y1="42.24" x2="60.72" y2="73.920006" class="broken"></line> + <line x1="66" y1="42.24" x2="66" y2="52.800003" class="solid"></line> + <line x1="71.28001" y1="42.24" x2="71.28001" y2="52.800003" class="solid"></line> + <line x1="76.560005" y1="42.24" x2="76.560005" y2="73.920006" class="broken"></line> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="73.920006" class="broken"></line> + <text x="91.08" y="50.160004" >*</text> + <line x1="97.68" y1="42.24" x2="97.68" y2="73.920006" class="broken"></line> + <line x1="102.96001" y1="42.24" x2="102.96001" y2="73.920006" class="broken"></line> + <line x1="108.240005" y1="42.24" x2="108.240005" y2="73.920006" class="broken"></line> + <line x1="113.520004" y1="47.52" x2="129.36" y2="47.52" class="solid"></line> <line x1="15.84" y1="56.760002" x2="26.400002" y2="56.760002" class="solid"></line> <line x1="15.84" y1="59.4" x2="26.400002" y2="59.4" class="solid"></line> <line x1="42.24" y1="56.760002" x2="47.52" y2="56.760002" class="solid"></line> <line x1="42.24" y1="59.4" x2="47.52" y2="59.4" class="solid"></line> + <line x1="63.36" y1="56.760002" x2="73.920006" y2="56.760002" class="solid"></line> + <line x1="63.36" y1="59.4" x2="73.920006" y2="59.4" class="solid"></line> + <line x1="89.76" y1="56.760002" x2="95.04" y2="56.760002" class="solid"></line> + <line x1="89.76" y1="59.4" x2="95.04" y2="59.4" class="solid"></line> + <line x1="110.880005" y1="56.760002" x2="132" y2="56.760002" class="solid"></line> + <line x1="110.880005" y1="59.4" x2="132" y2="59.4" class="solid"></line> <rect x="15.84" y="66" width="5.2800007" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="21.12" y="66" width="5.2800007" height="5.2800064" class="solid filled" rx="0"></rect> <text x="43.56" y="71.28001" >#</text> - <text x="1.32" y="81.840004" >...@@...@</text> + <text x="64.68" y="71.28001" >::</text> + <text x="91.08" y="71.28001" >#</text> + <text x="112.200005" y="71.28001" >:::#</text> + <text x="1.32" y="81.840004" >...@@...@.......@@@.....@</text> + <g> + <line x1="87.12" y1="36.960003" x2="92.4" y2="36.960003" class="solid"></line> + <line x1="87.12" y1="36.960003" x2="87.12" y2="73.920006" class="broken"></line> + <line x1="92.4" y1="36.960003" x2="92.4" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="113.520004" y1="36.960003" x2="129.36" y2="36.960003" class="solid"></line> + <line x1="113.520004" y1="36.960003" x2="113.520004" y2="42.24" class="solid"></line> + <line x1="118.8" y1="36.960003" x2="118.8" y2="42.24" class="solid"></line> + <line x1="124.08" y1="36.960003" x2="124.08" y2="42.24" class="solid"></line> + <line x1="129.36" y1="36.960003" x2="129.36" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/jazmine.flf b/static/db/contributed/rest/jazmine.flf similarity index 100% rename from static/db/contributed/fill/jazmine.flf rename to static/db/contributed/rest/jazmine.flf diff --git a/static/db/contributed/fill/jazmine.svg b/static/db/contributed/rest/jazmine.svg similarity index 56% rename from static/db/contributed/fill/jazmine.svg rename to static/db/contributed/rest/jazmine.svg index 8c335ec38c26f262b538a2eda02b6f268c0b75ca..b6eb7a4787b5059600d50491262d85733eb1a4ec 100644 --- a/static/db/contributed/fill/jazmine.svg +++ b/static/db/contributed/rest/jazmine.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="116.16" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="126.72" height="116.16" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,17 +112,31 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="116.16"></rect> + <rect class="backdrop" x="0" y="0" width="126.72" height="116.16"></rect> <text x="27.720001" y="18.480001" >.oo</text> + <text x="48.84" y="18.480001" >8</text> <text x="22.44" y="29.04" >.P</text> <text x="38.280003" y="29.04" >8</text> + <text x="48.84" y="29.04" >8</text> <text x="17.16" y="39.600002" >.P</text> <text x="38.280003" y="39.600002" >8</text> + <text x="48.84" y="39.600002" >8oPYo.</text> + <text x="85.8" y="39.600002" >.oPYo</text> <text x="11.88" y="50.160004" >oPooo8</text> + <text x="48.84" y="50.160004" >8</text> + <text x="75.240005" y="50.160004" >8</text> + <text x="85.8" y="50.160004" >8</text> + <text x="112.200005" y="50.160004" >'</text> <text x="6.6000004" y="60.72" >.P</text> <text x="38.280003" y="60.72" >8</text> + <text x="48.84" y="60.72" >8</text> + <text x="75.240005" y="60.72" >8</text> + <text x="85.8" y="60.72" >8</text> + <text x="112.200005" y="60.72" >.</text> <text x="1.32" y="71.28001" >.P</text> <text x="38.280003" y="71.28001" >8</text> + <text x="48.84" y="71.28001" >`YooP'</text> + <text x="85.8" y="71.28001" >`YooP'</text> <line x1="2.64" y1="81.840004" x2="2.64" y2="105.600006" class="broken"></line> <line x1="7.92" y1="81.840004" x2="7.92" y2="105.600006" class="broken"></line> <line x1="13.200001" y1="73.920006" x2="13.200001" y2="105.600006" class="broken"></line> @@ -115,4 +146,22 @@ <line x1="34.32" y1="73.920006" x2="34.32" y2="105.600006" class="broken"></line> <line x1="39.600002" y1="81.840004" x2="39.600002" y2="105.600006" class="broken"></line> <line x1="44.88" y1="81.840004" x2="44.88" y2="105.600006" class="broken"></line> + <line x1="50.160004" y1="73.920006" x2="50.160004" y2="105.600006" class="broken"></line> + <line x1="55.440002" y1="81.840004" x2="55.440002" y2="105.600006" class="broken"></line> + <line x1="60.72" y1="81.840004" x2="60.72" y2="105.600006" class="broken"></line> + <line x1="66" y1="81.840004" x2="66" y2="105.600006" class="broken"></line> + <line x1="71.28001" y1="81.840004" x2="71.28001" y2="105.600006" class="broken"></line> + <line x1="76.560005" y1="81.840004" x2="76.560005" y2="105.600006" class="broken"></line> + <line x1="81.840004" y1="73.920006" x2="81.840004" y2="105.600006" class="broken"></line> + <line x1="87.12" y1="73.920006" x2="87.12" y2="105.600006" class="broken"></line> + <line x1="92.4" y1="81.840004" x2="92.4" y2="105.600006" class="broken"></line> + <line x1="97.68" y1="81.840004" x2="97.68" y2="105.600006" class="broken"></line> + <line x1="102.96001" y1="81.840004" x2="102.96001" y2="105.600006" class="broken"></line> + <line x1="108.240005" y1="81.840004" x2="108.240005" y2="105.600006" class="broken"></line> + <line x1="113.520004" y1="81.840004" x2="113.520004" y2="105.600006" class="broken"></line> + <line x1="118.8" y1="73.920006" x2="118.8" y2="105.600006" class="broken"></line> + <g> + <path d="M 110.880005,36.960003 A 2.64,2.64 0,0,1 113.520004,39.600002" class="nofill"></path> + <line x1="113.520004" y1="39.600002" x2="113.520004" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/fill/letters.flf b/static/db/contributed/rest/letters.flf similarity index 100% rename from static/db/contributed/fill/letters.flf rename to static/db/contributed/rest/letters.flf diff --git a/static/db/contributed/fill/letters.svg b/static/db/contributed/rest/letters.svg similarity index 71% rename from static/db/contributed/fill/letters.svg rename to static/db/contributed/rest/letters.svg index 47f753510891c56beb07c56e54676f1e445e2737..0f14b194abe10fe0424fa53d8c0bcafa847618a6 100644 --- a/static/db/contributed/fill/letters.svg +++ b/static/db/contributed/rest/letters.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="121.44" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="121.44" height="63.36"></rect> <text x="11.88" y="7.92" >AAA</text> <text x="6.6000004" y="18.480001" >AAAAA</text> <text x="1.32" y="29.04" >AA</text> @@ -103,4 +120,14 @@ <text x="1.32" y="39.600002" >AAAAAAA</text> <text x="1.32" y="50.160004" >AA</text> <text x="27.720001" y="50.160004" >AA</text> + <text x="43.56" y="7.92" >bb</text> + <text x="43.56" y="18.480001" >bb</text> + <text x="43.56" y="29.04" >bbbbbb</text> + <text x="43.56" y="39.600002" >bb</text> + <text x="69.96" y="39.600002" >bb</text> + <text x="43.56" y="50.160004" >bbbbbb</text> + <text x="96.36" y="18.480001" >cccc</text> + <text x="85.8" y="29.04" >cc</text> + <text x="85.8" y="39.600002" >cc</text> + <text x="91.08" y="50.160004" >ccccc</text> </svg> diff --git a/static/db/contributed/fill/nancyj-fancy.flf b/static/db/contributed/rest/nancyj-fancy.flf similarity index 100% rename from static/db/contributed/fill/nancyj-fancy.flf rename to static/db/contributed/rest/nancyj-fancy.flf diff --git a/static/db/contributed/fill/nancyj-fancy.svg b/static/db/contributed/rest/nancyj-fancy.svg similarity index 70% rename from static/db/contributed/fill/nancyj-fancy.svg rename to static/db/contributed/rest/nancyj-fancy.svg index a057cb36e3c1d5fcfe120c013e33d506aa0ddabc..2d65541cbf977bbb6cfb5522bd392aad0daa36ae 100644 --- a/static/db/contributed/fill/nancyj-fancy.svg +++ b/static/db/contributed/rest/nancyj-fancy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="163.68001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="68.64" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="163.68001" height="84.48"></rect> <text x="1.32" y="7.92" >MMP</text> <text x="48.84" y="7.92" >"MM</text> <text x="1.32" y="18.480001" >M'</text> @@ -113,7 +130,22 @@ <text x="17.16" y="60.72" >MMMMM</text> <text x="54.120003" y="60.72" >MM</text> <text x="1.32" y="71.28001" >MMMMMMMMMMMM</text> + <text x="69.96" y="7.92" >dP</text> + <text x="69.96" y="18.480001" >88</text> + <text x="69.96" y="29.04" >88d888b.</text> + <text x="69.96" y="39.600002" >88'</text> + <text x="96.36" y="39.600002" >`88</text> + <text x="69.96" y="50.160004" >88.</text> + <text x="96.36" y="50.160004" >.88</text> + <text x="69.96" y="60.72" >88Y8888'</text> + <text x="117.48" y="29.04" >.d8888b.</text> + <text x="117.48" y="39.600002" >88'</text> + <text x="143.88" y="39.600002" >`</text> + <text x="117.48" y="50.160004" >88.</text> + <text x="143.88" y="50.160004" >...</text> + <text x="117.48" y="60.72" >`88888P'</text> <text x="17.16" y="7.92" ></text> <text x="27.720001" y="7.92" ></text> <text x="38.280003" y="7.92" ></text> + <text x="149.16" y="39.600002" ></text> </svg> diff --git a/static/db/contributed/fill/nancyj-underlined.flf b/static/db/contributed/rest/nancyj-underlined.flf similarity index 100% rename from static/db/contributed/fill/nancyj-underlined.flf rename to static/db/contributed/rest/nancyj-underlined.flf diff --git a/static/db/contributed/fill/nancyj-underlined.svg b/static/db/contributed/rest/nancyj-underlined.svg similarity index 66% rename from static/db/contributed/fill/nancyj-underlined.svg rename to static/db/contributed/rest/nancyj-underlined.svg index 6f9440738cbf42cce4946cefdff6f5c34afb2854..0cf1c4af5ef5a6b78abf881b548962f7e1f3cd62 100644 --- a/static/db/contributed/fill/nancyj-underlined.svg +++ b/static/db/contributed/rest/nancyj-underlined.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,31 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="84.48"></rect> <text x="6.6000004" y="7.92" >.d888888</text> + <text x="59.4" y="7.92" >dP</text> <text x="1.32" y="18.480001" >d8'</text> <text x="38.280003" y="18.480001" >88</text> + <text x="59.4" y="18.480001" >88</text> <text x="1.32" y="29.04" >88aaaaa88a</text> + <text x="59.4" y="29.04" >88d888b.</text> + <text x="106.920006" y="29.04" >.d8888b.</text> <text x="1.32" y="39.600002" >88</text> <text x="38.280003" y="39.600002" >88</text> + <text x="59.4" y="39.600002" >88'</text> + <text x="85.8" y="39.600002" >`88</text> + <text x="106.920006" y="39.600002" >88'</text> + <text x="133.32" y="39.600002" >`</text> <text x="1.32" y="50.160004" >88</text> <text x="38.280003" y="50.160004" >88</text> + <text x="59.4" y="50.160004" >88.</text> + <text x="85.8" y="50.160004" >.88</text> + <text x="106.920006" y="50.160004" >88.</text> + <text x="133.32" y="50.160004" >...</text> <text x="1.32" y="60.72" >88</text> <text x="38.280003" y="60.72" >88</text> - <text x="1.32" y="71.28001" >ooooooooooo</text> + <text x="59.4" y="60.72" >88Y8888'</text> + <text x="106.920006" y="60.72" >`88888P'</text> + <text x="1.32" y="71.28001" >ooooooooooooooooooooooooooooo</text> + <text x="138.6" y="39.600002" ></text> </svg> diff --git a/static/db/contributed/fill/nancyj.flf b/static/db/contributed/rest/nancyj.flf similarity index 100% rename from static/db/contributed/fill/nancyj.flf rename to static/db/contributed/rest/nancyj.flf diff --git a/static/db/contributed/fill/nancyj.svg b/static/db/contributed/rest/nancyj.svg similarity index 67% rename from static/db/contributed/fill/nancyj.svg rename to static/db/contributed/rest/nancyj.svg index ab72dcccbbb1a3c545aef4af6e3d3967e5f579e3..c5fcdb1bf2cb8c544ce11835a69ea16efce541ba 100644 --- a/static/db/contributed/fill/nancyj.svg +++ b/static/db/contributed/rest/nancyj.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="73.920006"></rect> <text x="6.6000004" y="7.92" >.d888888</text> <text x="1.32" y="18.480001" >d8'</text> <text x="38.280003" y="18.480001" >88</text> @@ -106,4 +123,19 @@ <text x="38.280003" y="50.160004" >88</text> <text x="1.32" y="60.72" >88</text> <text x="38.280003" y="60.72" >88</text> + <text x="59.4" y="7.92" >dP</text> + <text x="59.4" y="18.480001" >88</text> + <text x="59.4" y="29.04" >88d888b.</text> + <text x="59.4" y="39.600002" >88'</text> + <text x="85.8" y="39.600002" >`88</text> + <text x="59.4" y="50.160004" >88.</text> + <text x="85.8" y="50.160004" >.88</text> + <text x="59.4" y="60.72" >88Y8888'</text> + <text x="106.920006" y="29.04" >.d8888b.</text> + <text x="106.920006" y="39.600002" >88'</text> + <text x="133.32" y="39.600002" >`</text> + <text x="106.920006" y="50.160004" >88.</text> + <text x="133.32" y="50.160004" >...</text> + <text x="106.920006" y="60.72" >`88888P'</text> + <text x="138.6" y="39.600002" ></text> </svg> diff --git a/static/db/contributed/fill/nvscript.flf b/static/db/contributed/rest/nvscript.flf similarity index 100% rename from static/db/contributed/fill/nvscript.flf rename to static/db/contributed/rest/nvscript.flf diff --git a/static/db/contributed/fill/nvscript.svg b/static/db/contributed/rest/nvscript.svg similarity index 64% rename from static/db/contributed/fill/nvscript.svg rename to static/db/contributed/rest/nvscript.svg index 9976f5215ccd7dcf12e32bd24c44a4e3462a14b1..4ff864edd0b2b4a84789ba37a15188f2e8f9229c 100644 --- a/static/db/contributed/fill/nvscript.svg +++ b/static/db/contributed/rest/nvscript.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="116.16" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="205.92001" height="116.16" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="100.32001" height="116.16"></rect> + <rect class="backdrop" x="0" y="0" width="205.92001" height="116.16"></rect> <text x="59.4" y="7.92" >,ggg,</text> <text x="54.120003" y="18.480001" >dP</text> <text x="75.240005" y="18.480001" >8I</text> @@ -107,16 +124,36 @@ <text x="75.240005" y="50.160004" >88</text> <text x="38.280003" y="60.72" >d88888888</text> <line x1="5.28" y1="73.920006" x2="15.84" y2="73.920006" class="solid"></line> - <text x="33" y="71.28001" >,8"</text> - <text x="75.240005" y="71.28001" >88</text> + <text x="33" y="71.28001" >,8</text> <text x="1.32" y="81.840004" >dP"</text> <text x="27.720001" y="81.840004" >,8P</text> - <text x="75.240005" y="81.840004" >Y8</text> <text x="1.32" y="92.4" >Yb,</text> <line x1="15.84" y1="95.04" x2="21.12" y2="95.04" class="solid"></line> <text x="22.44" y="92.4" >,dP</text> - <text x="75.240005" y="92.4" >`8b,</text> - <text x="80.520004" y="102.96001" >`Y8</text> + <text x="101.64001" y="18.480001" >,dPYb,</text> + <text x="101.64001" y="29.04" >IP'`Yb</text> + <text x="101.64001" y="39.600002" >I8</text> + <text x="122.76" y="39.600002" >8I</text> + <text x="101.64001" y="50.160004" >I8</text> + <text x="122.76" y="50.160004" >8'</text> + <text x="101.64001" y="60.72" >I8</text> + <text x="117.48" y="60.72" >dP</text> + <text x="165" y="60.72" >,gggg,</text> + <text x="186.12001" y="71.28001" >"Yb</text> + <text x="75.240005" y="81.840004" >Y8</text> + <text x="101.64001" y="81.840004" >I8P</text> + <text x="75.240005" y="92.4" >`8b,,d8b,</text> + <text x="80.520004" y="102.96001" >`Y88P'</text> + <text x="138.6" y="81.840004" >8I</text> + <text x="154.44" y="81.840004" >i8'</text> + <text x="133.32" y="92.4" >,8I,d8,</text> + <line x1="168.96" y1="95.04" x2="174.24" y2="95.04" class="solid"></line> + <line x1="195.36" y1="95.04" x2="200.64001" y2="95.04" class="solid"></line> + <text x="143.88" y="102.96001" >'P</text> + <text x="165" y="102.96001" >Y8888PP</text> <text x="64.68" y="18.480001" ></text> + <text x="43.56" y="71.28001" > 88 I8dP 88ggdP</text> <text x="6.6000004" y="102.96001" >Y8P</text> + <text x="112.200005" y="102.96001" >Y88P</text> + <text x="154.44" y="102.96001" ></text> </svg> diff --git a/static/db/contributed/fill/o8.flf b/static/db/contributed/rest/o8.flf similarity index 100% rename from static/db/contributed/fill/o8.flf rename to static/db/contributed/rest/o8.flf diff --git a/static/db/contributed/fill/o8.svg b/static/db/contributed/rest/o8.svg similarity index 68% rename from static/db/contributed/fill/o8.svg rename to static/db/contributed/rest/o8.svg index d6eeca193de5c3655237db9a6a70d71b70853712..81e60a76a46f9ce7f42b5e77f976fe75d416c90b 100644 --- a/static/db/contributed/fill/o8.svg +++ b/static/db/contributed/rest/o8.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="190.08" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="190.08" height="63.36"></rect> <text x="27.720001" y="7.92" >o</text> <text x="22.44" y="18.480001" >888</text> <text x="17.16" y="29.04" >8</text> @@ -103,4 +120,16 @@ <text x="11.88" y="39.600002" >8oooo88</text> <text x="1.32" y="50.160004" >o88o</text> <text x="33" y="50.160004" >o888o</text> + <text x="64.68" y="7.92" >oooo</text> + <text x="69.96" y="18.480001" >888ooooo</text> + <text x="69.96" y="29.04" >888</text> + <text x="106.920006" y="29.04" >888</text> + <text x="69.96" y="39.600002" >888</text> + <text x="106.920006" y="39.600002" >888</text> + <text x="64.68" y="50.160004" >o888ooo88</text> + <text x="138.6" y="18.480001" >ooooooo</text> + <text x="128.04001" y="29.04" >888</text> + <text x="170.28001" y="29.04" >888</text> + <text x="128.04001" y="39.600002" >888</text> + <text x="138.6" y="50.160004" >88ooo888</text> </svg> diff --git a/static/db/contributed/fill/pebbles.flf b/static/db/contributed/rest/pebbles.flf similarity index 100% rename from static/db/contributed/fill/pebbles.flf rename to static/db/contributed/rest/pebbles.flf diff --git a/static/db/contributed/fill/pebbles.svg b/static/db/contributed/rest/pebbles.svg similarity index 70% rename from static/db/contributed/fill/pebbles.svg rename to static/db/contributed/rest/pebbles.svg index 1f726b10473deca11bd69b37b799404bfd6be714..3ac55064805b94d69d275c558083a40bd6fcfc15 100644 --- a/static/db/contributed/fill/pebbles.svg +++ b/static/db/contributed/rest/pebbles.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="95.04"></rect> <text x="17.16" y="7.92" >Oo</text> <text x="11.88" y="18.480001" >o</text> <text x="27.720001" y="18.480001" >O</text> @@ -110,4 +127,18 @@ <text x="38.280003" y="71.28001" >O</text> <text x="1.32" y="81.840004" >O.</text> <text x="38.280003" y="81.840004" >O</text> + <text x="54.120003" y="7.92" >o</text> + <text x="48.84" y="18.480001" >O</text> + <text x="48.84" y="29.04" >O</text> + <text x="48.84" y="39.600002" >o</text> + <text x="48.84" y="50.160004" >OoOo.</text> + <text x="48.84" y="60.72" >O</text> + <text x="69.96" y="60.72" >o</text> + <text x="48.84" y="71.28001" >o</text> + <text x="69.96" y="71.28001" >O</text> + <text x="48.84" y="81.840004" >`OoO'</text> + <text x="80.520004" y="50.160004" >.oOo</text> + <text x="80.520004" y="60.72" >O</text> + <text x="80.520004" y="71.28001" >o</text> + <text x="80.520004" y="81.840004" >`OoO'</text> </svg> diff --git a/static/db/contributed/fill/poison.flf b/static/db/contributed/rest/poison.flf similarity index 100% rename from static/db/contributed/fill/poison.flf rename to static/db/contributed/rest/poison.flf diff --git a/static/db/contributed/fill/poison.svg b/static/db/contributed/rest/poison.svg similarity index 56% rename from static/db/contributed/fill/poison.svg rename to static/db/contributed/rest/poison.svg index e8598b58f2d55452f974e81e78ae74b0adde9f46..6de7815c70316d0b7eff7d24baf1f5210baee589 100644 --- a/static/db/contributed/fill/poison.svg +++ b/static/db/contributed/rest/poison.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="126.72"></rect> <text x="6.6000004" y="18.480001" >@@@@@@</text> <text x="1.32" y="29.04" >@@@@@@@@</text> <text x="1.32" y="39.600002" >@@</text> @@ -113,4 +130,36 @@ <line x1="13.200001" y1="63.36" x2="13.200001" y2="95.04" class="broken"></line> <text x="17.16" y="71.28001" >@!</text> <line x1="34.32" y1="63.36" x2="34.32" y2="105.600006" class="broken"></line> + <text x="54.120003" y="18.480001" >@@@@@@@</text> + <text x="54.120003" y="29.04" >@@@@@@@@</text> + <text x="54.120003" y="39.600002" >@@!</text> + <text x="80.520004" y="39.600002" >@@@</text> + <text x="54.120003" y="50.160004" >!@</text> + <text x="80.520004" y="50.160004" >@!@</text> + <text x="54.120003" y="60.72" >@</text> + <line x1="60.72" y1="52.800003" x2="60.72" y2="116.16" class="broken"></line> + <text x="64.68" y="60.72" >@!@</text> + <line x1="81.840004" y1="52.800003" x2="81.840004" y2="116.16" class="broken"></line> + <text x="85.8" y="60.72" >@</text> + <line x1="55.440002" y1="63.36" x2="55.440002" y2="95.04" class="broken"></line> + <line x1="66" y1="63.36" x2="66" y2="105.600006" class="broken"></line> + <text x="69.96" y="71.28001" >@!</text> + <line x1="87.12" y1="63.36" x2="87.12" y2="116.16" class="broken"></line> + <line x1="92.4" y1="63.36" x2="92.4" y2="105.600006" class="broken"></line> + <text x="75.240005" y="102.96001" >:</text> + <text x="54.120003" y="113.520004" >:</text> + <text x="69.96" y="113.520004" >:</text> + <text x="112.200005" y="18.480001" >@@@@@@@</text> + <text x="106.920006" y="29.04" >@@@@@@@@</text> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="95.04" class="broken"></line> + <text x="112.200005" y="39.600002" >@@</text> + <text x="112.200005" y="50.160004" >@</text> + <line x1="118.8" y1="42.24" x2="118.8" y2="116.16" class="broken"></line> + <text x="112.200005" y="60.72" >@</text> + <line x1="113.520004" y1="63.36" x2="113.520004" y2="116.16" class="broken"></line> + <text x="122.76" y="102.96001" >:</text> + <line x1="134.64" y1="95.04" x2="134.64" y2="116.16" class="broken"></line> + <text x="138.6" y="102.96001" >:</text> + <line x1="145.20001" y1="95.04" x2="145.20001" y2="116.16" class="broken"></line> + <text x="128.04001" y="113.520004" >:</text> </svg> diff --git a/static/db/contributed/fill/roman.flf b/static/db/contributed/rest/roman.flf similarity index 100% rename from static/db/contributed/fill/roman.flf rename to static/db/contributed/rest/roman.flf diff --git a/static/db/contributed/fill/roman.svg b/static/db/contributed/rest/roman.svg similarity index 66% rename from static/db/contributed/fill/roman.svg rename to static/db/contributed/rest/roman.svg index 5ae6ac4fd9b40d481c1cc347b850d2323c66ed0c..b8f426312ef8a2bd8ad2fd9012d38a5c46e14ce1 100644 --- a/static/db/contributed/fill/roman.svg +++ b/static/db/contributed/rest/roman.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="195.36" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="195.36" height="84.48"></rect> <text x="33" y="7.92" >.o.</text> <text x="27.720001" y="18.480001" >.888.</text> <text x="22.44" y="29.04" >.8"888.</text> @@ -106,4 +123,21 @@ <text x="48.84" y="60.72" >`888.</text> <text x="1.32" y="71.28001" >o88o</text> <text x="48.84" y="71.28001" >o8888o</text> + <text x="91.08" y="7.92" >.o8</text> + <text x="85.8" y="18.480001" >"888</text> + <text x="91.08" y="29.04" >888oooo.</text> + <text x="91.08" y="39.600002" >d88'</text> + <text x="117.48" y="39.600002" >`88b</text> + <text x="91.08" y="50.160004" >888</text> + <text x="122.76" y="50.160004" >888</text> + <text x="91.08" y="60.72" >888</text> + <text x="122.76" y="60.72" >888</text> + <text x="91.08" y="71.28001" >`Y8bod8P'</text> + <text x="149.16" y="29.04" >.ooooo.</text> + <text x="143.88" y="39.600002" >d88'</text> + <text x="170.28001" y="39.600002" >`"Y8</text> + <text x="143.88" y="50.160004" >888</text> + <text x="143.88" y="60.72" >888</text> + <text x="175.56001" y="60.72" >.o8</text> + <text x="143.88" y="71.28001" >`Y8bod8P'</text> </svg> diff --git a/static/db/contributed/fill/rowancap.flf b/static/db/contributed/rest/rowancap.flf similarity index 100% rename from static/db/contributed/fill/rowancap.flf rename to static/db/contributed/rest/rowancap.flf diff --git a/static/db/contributed/fill/rowancap.svg b/static/db/contributed/rest/rowancap.svg similarity index 68% rename from static/db/contributed/fill/rowancap.svg rename to static/db/contributed/rest/rowancap.svg index 67daf29e647b0dd718c0dd4f1c07593b37842c3a..4b6252089b162ffc52a01fce104f3108656eabd4 100644 --- a/static/db/contributed/fill/rowancap.svg +++ b/static/db/contributed/rest/rowancap.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="142.56001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,12 +112,23 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="142.56001" height="63.36"></rect> <text x="22.44" y="7.92" >.aMMMb</text> - <text x="17.16" y="18.480001" >dMP"dMP</text> + <text x="64.68" y="7.92" >dMMMMb</text> + <text x="106.920006" y="7.92" >.aMMMb</text> + <text x="17.16" y="18.480001" >dMP</text> + <text x="80.520004" y="18.480001" >dMP</text> + <text x="101.64001" y="18.480001" >dMP"VMP</text> <text x="11.88" y="29.04" >dMMMMMP</text> + <text x="54.120003" y="29.04" >dMMMMK"</text> + <text x="96.36" y="29.04" >dMP</text> <text x="6.6000004" y="39.600002" >dMP</text> <text x="27.720001" y="39.600002" >dMP</text> + <text x="48.84" y="39.600002" >dMP.aMF</text> + <text x="91.08" y="39.600002" >dMP.aMP</text> <text x="1.32" y="50.160004" >dMP</text> <text x="22.44" y="50.160004" >dMP</text> + <text x="43.56" y="50.160004" >dMMMMP</text> + <text x="33" y="18.480001" >dMP dMP</text> + <text x="75.240005" y="50.160004" > VMMMP</text> </svg> diff --git a/static/db/contributed/fill/rozzo.flf b/static/db/contributed/rest/rozzo.flf similarity index 100% rename from static/db/contributed/fill/rozzo.flf rename to static/db/contributed/rest/rozzo.flf diff --git a/static/db/contributed/fill/rozzo.svg b/static/db/contributed/rest/rozzo.svg similarity index 66% rename from static/db/contributed/fill/rozzo.svg rename to static/db/contributed/rest/rozzo.svg index c8cd61ad940c9df1f61e0d4471f260bffd80dc8c..4bc2f142a9816403175de9ae7079ef240fbf9a81 100644 --- a/static/db/contributed/fill/rozzo.svg +++ b/static/db/contributed/rest/rozzo.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="73.920006" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="63.36"></rect> <text x="22.44" y="7.92" >e</text> <text x="33" y="7.92" >Y8b</text> <text x="17.16" y="18.480001" >d8b</text> @@ -105,4 +122,20 @@ <text x="6.6000004" y="39.600002" >d888888888b</text> <text x="1.32" y="50.160004" >d8888888b</text> <text x="54.120003" y="50.160004" >Y8b</text> + <text x="75.240005" y="7.92" >888</text> + <text x="75.240005" y="18.480001" >888</text> + <text x="75.240005" y="29.04" >888</text> + <text x="75.240005" y="39.600002" >888</text> + <text x="75.240005" y="50.160004" >888</text> + <text x="96.36" y="18.480001" >88e</text> + <text x="96.36" y="29.04" >888b</text> + <text x="96.36" y="39.600002" >888P</text> + <text x="96.36" y="50.160004" >88</text> + <text x="128.04001" y="18.480001" >e88'888</text> + <text x="122.76" y="29.04" >d888</text> + <text x="154.44" y="29.04" >'8</text> + <text x="122.76" y="39.600002" >Y888</text> + <text x="159.72" y="39.600002" >,</text> + <text x="133.32" y="50.160004" >88,e8'</text> + <text x="106.920006" y="50.160004" > </text> </svg> diff --git a/static/db/contributed/fill/sblood.flf b/static/db/contributed/rest/sblood.flf similarity index 100% rename from static/db/contributed/fill/sblood.flf rename to static/db/contributed/rest/sblood.flf diff --git a/static/db/contributed/fill/sblood.svg b/static/db/contributed/rest/sblood.svg similarity index 62% rename from static/db/contributed/fill/sblood.svg rename to static/db/contributed/rest/sblood.svg index b56d6442377b5e06d4c7071aa508c348b873cf7d..f8fd415718b1b641f428198f5668b517bc6a8d6b 100644 --- a/static/db/contributed/fill/sblood.svg +++ b/static/db/contributed/rest/sblood.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="63.36"></rect> <text x="11.88" y="7.92" >@@@@@@</text> <text x="6.6000004" y="18.480001" >@@!</text> <text x="33" y="18.480001" >@@@</text> @@ -108,4 +125,25 @@ <text x="6.6000004" y="39.600002" >!</text> <text x="17.16" y="39.600002" >:</text> <text x="38.280003" y="39.600002" >!</text> + <text x="54.120003" y="7.92" >@@@@@@@</text> + <text x="54.120003" y="18.480001" >@@!</text> + <text x="80.520004" y="18.480001" >@@@</text> + <text x="54.120003" y="29.04" >@</text> + <line x1="60.72" y1="21.12" x2="60.72" y2="52.800003" class="broken"></line> + <text x="64.68" y="29.04" >@!@</text> + <line x1="81.840004" y1="21.12" x2="81.840004" y2="52.800003" class="broken"></line> + <text x="85.8" y="29.04" >@</text> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="52.800003" class="broken"></line> + <text x="64.68" y="39.600002" >:</text> + <line x1="87.12" y1="31.68" x2="87.12" y2="52.800003" class="broken"></line> + <text x="91.08" y="39.600002" >!</text> + <text x="69.96" y="50.160004" >:</text> + <text x="106.920006" y="7.92" >@@@@@@@</text> + <line x1="102.96001" y1="10.56" x2="102.96001" y2="42.24" class="broken"></line> + <text x="106.920006" y="18.480001" >@@</text> + <text x="106.920006" y="29.04" >@</text> + <line x1="113.520004" y1="21.12" x2="113.520004" y2="52.800003" class="broken"></line> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="52.800003" class="broken"></line> + <text x="122.76" y="50.160004" >::</text> + <text x="138.6" y="50.160004" >:</text> </svg> diff --git a/static/db/contributed/fill/stellar.flf b/static/db/contributed/rest/stellar.flf similarity index 100% rename from static/db/contributed/fill/stellar.flf rename to static/db/contributed/rest/stellar.flf diff --git a/static/db/contributed/fill/stellar.svg b/static/db/contributed/rest/stellar.svg similarity index 64% rename from static/db/contributed/fill/stellar.svg rename to static/db/contributed/rest/stellar.svg index a826262c695450db8f7773be3751eb07be6ec742..f72078f45821a7aeb7ff70bd73c8086caa165dd3 100644 --- a/static/db/contributed/fill/stellar.svg +++ b/static/db/contributed/rest/stellar.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,18 +112,36 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <text x="33" y="7.92" >`.</text> + <text x="80.520004" y="7.92" >`..</text> <text x="27.720001" y="18.480001" >`.</text> <text x="43.56" y="18.480001" >..</text> + <text x="80.520004" y="18.480001" >`..</text> <text x="22.44" y="29.04" >`.</text> <text x="43.56" y="29.04" >`..</text> + <text x="80.520004" y="29.04" >`..</text> <text x="17.16" y="39.600002" >`..</text> <text x="48.84" y="39.600002" >`..</text> + <text x="80.520004" y="39.600002" >`..</text> <text x="11.88" y="50.160004" >`......</text> <text x="54.120003" y="50.160004" >`..</text> + <text x="80.520004" y="50.160004" >`..</text> <text x="6.6000004" y="60.72" >`..</text> <text x="59.4" y="60.72" >`..</text> + <text x="80.520004" y="60.72" >`..</text> <text x="1.32" y="71.28001" >`..</text> - <text x="64.68" y="71.28001" >`..</text> + <text x="64.68" y="71.28001" >`..`..</text> + <text x="143.88" y="29.04" >`...</text> + <text x="101.64001" y="39.600002" >`</text> + <line x1="102.96001" y1="31.68" x2="118.8" y2="47.52" class="broken"></line> + <text x="112.200005" y="39.600002" >.</text> + <text x="133.32" y="39.600002" >`..</text> + <text x="117.48" y="50.160004" >..`..</text> + <text x="112.200005" y="60.72" >`..</text> + <text x="133.32" y="60.72" >`</text> + <line x1="134.64" y1="52.800003" x2="150.48001" y2="68.64" class="broken"></line> + <text x="143.88" y="60.72" >.</text> + <text x="101.64001" y="71.28001" >`..</text> + <text x="149.16" y="71.28001" >...</text> </svg> diff --git a/static/db/contributed/fill/tanja.flf b/static/db/contributed/rest/tanja.flf similarity index 100% rename from static/db/contributed/fill/tanja.flf rename to static/db/contributed/rest/tanja.flf diff --git a/static/db/contributed/fill/tanja.svg b/static/db/contributed/rest/tanja.svg similarity index 59% rename from static/db/contributed/fill/tanja.svg rename to static/db/contributed/rest/tanja.svg index 7c3f6f2042b6691edff63ece21d34ab11da9beec..daf5b5e9e2e9d7a3599365d33ce98f5bce052ce9 100644 --- a/static/db/contributed/fill/tanja.svg +++ b/static/db/contributed/rest/tanja.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="132" height="73.920006"></rect> <text x="11.88" y="7.92" >A</text> <path d="M 15.84,0 A 10.56,10.56 0,0,1 15.84,10.56" class="nofill"></path> <text x="22.44" y="7.92" >aa</text> @@ -110,10 +127,40 @@ <text x="33" y="50.160004" >aa</text> <text x="1.32" y="60.72" >A</text> <text x="33" y="60.72" >aa</text> + <text x="48.84" y="7.92" >b</text> + <text x="48.84" y="18.480001" >b</text> + <text x="48.84" y="29.04" >b</text> + <text x="59.4" y="29.04" >BBBB</text> + <text x="48.84" y="39.600002" >b</text> + <text x="75.240005" y="39.600002" >BB</text> + <text x="48.84" y="50.160004" >b</text> + <text x="75.240005" y="50.160004" >BB</text> + <text x="48.84" y="60.72" >b</text> + <text x="59.4" y="60.72" >BBBB</text> + <text x="96.36" y="29.04" >c</text> + <path d="M 100.32001,21.12 A 10.56,10.56 0,0,1 100.32001,31.68" class="nofill"></path> + <text x="106.920006" y="29.04" >CCCC</text> + <text x="91.08" y="39.600002" >c</text> + <text x="91.08" y="50.160004" >c</text> + <text x="96.36" y="60.72" >c</text> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + <text x="106.920006" y="60.72" >CCCC</text> <g> <path d="M 5.28,21.12 A 10.56,10.56 0,0,1 5.28,31.68" class="nofill"></path> <path d="M 5.28,31.68 A 10.56,10.56 0,0,1 5.28,42.24" class="nofill"></path> <path d="M 5.28,42.24 A 10.56,10.56 0,0,1 5.28,52.800003" class="nofill"></path> <path d="M 5.28,52.800003 A 10.56,10.56 0,0,1 5.28,63.36" class="nofill"></path> </g> + <g> + <path d="M 52.800003,0 A 10.56,10.56 0,0,1 52.800003,10.56" class="nofill"></path> + <path d="M 52.800003,10.56 A 10.56,10.56 0,0,1 52.800003,21.12" class="nofill"></path> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,1 52.800003,31.68" class="nofill"></path> + <path d="M 52.800003,31.68 A 10.56,10.56 0,0,1 52.800003,42.24" class="nofill"></path> + <path d="M 52.800003,42.24 A 10.56,10.56 0,0,1 52.800003,52.800003" class="nofill"></path> + <path d="M 52.800003,52.800003 A 10.56,10.56 0,0,1 52.800003,63.36" class="nofill"></path> + </g> + <g> + <path d="M 95.04,31.68 A 10.56,10.56 0,0,1 95.04,42.24" class="nofill"></path> + <path d="M 95.04,42.24 A 10.56,10.56 0,0,1 95.04,52.800003" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/fill/thick.flf b/static/db/contributed/rest/thick.flf similarity index 100% rename from static/db/contributed/fill/thick.flf rename to static/db/contributed/rest/thick.flf diff --git a/static/db/contributed/fill/thick.svg b/static/db/contributed/rest/thick.svg similarity index 72% rename from static/db/contributed/fill/thick.svg rename to static/db/contributed/rest/thick.svg index 675021b0e952994e58ad67db3b5f25da35a58626..1f945426969a1926858aa6efa0bc643b0f86fb32 100644 --- a/static/db/contributed/fill/thick.svg +++ b/static/db/contributed/rest/thick.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,18 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="52.800003"></rect> <text x="17.16" y="7.92" >db</text> <text x="11.88" y="18.480001" >dPYb</text> <text x="6.6000004" y="29.04" >dPwwYb</text> <text x="1.32" y="39.600002" >dP</text> <text x="33" y="39.600002" >Yb</text> + <text x="48.84" y="7.92" >8</text> + <text x="48.84" y="18.480001" >88b.</text> + <text x="48.84" y="29.04" >8</text> + <text x="64.68" y="29.04" >8</text> + <text x="48.84" y="39.600002" >88P'</text> + <text x="75.240005" y="18.480001" >.d8b</text> + <text x="75.240005" y="29.04" >8</text> + <text x="75.240005" y="39.600002" >`Y8P</text> </svg> diff --git a/static/db/contributed/fill/trek.flf b/static/db/contributed/rest/trek.flf similarity index 100% rename from static/db/contributed/fill/trek.flf rename to static/db/contributed/rest/trek.flf diff --git a/static/db/contributed/fill/trek.svg b/static/db/contributed/rest/trek.svg similarity index 71% rename from static/db/contributed/fill/trek.svg rename to static/db/contributed/rest/trek.svg index 3a8c4e9b8f984d85a2e9475ae3377198fdc060aa..718c6899ffe3fbced49c29983a0155f3efc7b305 100644 --- a/static/db/contributed/fill/trek.svg +++ b/static/db/contributed/rest/trek.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="63.36"></rect> <text x="11.88" y="7.92" >dBBBBBb</text> <text x="38.280003" y="18.480001" >BB</text> <text x="17.16" y="29.04" >dBP</text> @@ -103,4 +120,14 @@ <text x="11.88" y="39.600002" >dBP</text> <text x="38.280003" y="39.600002" >BB</text> <text x="6.6000004" y="50.160004" >dBBBBBBB</text> + <text x="69.96" y="7.92" >dBBBBb</text> + <text x="85.8" y="18.480001" >dBP</text> + <text x="64.68" y="29.04" >dBBBK'</text> + <text x="59.4" y="39.600002" >dB'</text> + <text x="80.520004" y="39.600002" >db</text> + <text x="54.120003" y="50.160004" >dBBBBP'</text> + <text x="117.48" y="7.92" >dBBBP</text> + <text x="106.920006" y="29.04" >dBP</text> + <text x="101.64001" y="39.600002" >dBP</text> + <text x="96.36" y="50.160004" >dBBBBP</text> </svg> diff --git a/static/db/contributed/fill/univers.flf b/static/db/contributed/rest/univers.flf similarity index 100% rename from static/db/contributed/fill/univers.flf rename to static/db/contributed/rest/univers.flf diff --git a/static/db/contributed/fill/univers.svg b/static/db/contributed/rest/univers.svg similarity index 65% rename from static/db/contributed/fill/univers.svg rename to static/db/contributed/rest/univers.svg index 7c46c9c4721ef14bb769448186772e5895147af4..d88dfad0929208b13f8532e03e98884454c71e0b 100644 --- a/static/db/contributed/fill/univers.svg +++ b/static/db/contributed/rest/univers.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="211.20001" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="89.76" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="211.20001" height="105.600006"></rect> <text x="38.280003" y="18.480001" >db</text> <text x="33" y="29.04" >d88b</text> <text x="27.720001" y="39.600002" >d8'`8b</text> @@ -108,8 +125,30 @@ <text x="64.68" y="81.840004" >`8b</text> <text x="1.32" y="92.4" >d8'</text> <text x="69.96" y="92.4" >`8b</text> + <text x="91.08" y="18.480001" >88</text> + <text x="91.08" y="29.04" >88</text> + <text x="91.08" y="39.600002" >88</text> + <text x="91.08" y="50.160004" >88,dPPYba,</text> + <text x="91.08" y="60.72" >88P'</text> + <text x="91.08" y="71.28001" >88</text> + <text x="91.08" y="81.840004" >88b,</text> + <text x="91.08" y="92.4" >8Y</text> + <text x="159.72" y="50.160004" >,adPPYba,</text> + <text x="138.6" y="71.28001" >d8</text> + <text x="128.04001" y="81.840004" >,a8</text> + <text x="138.6" y="92.4" >'</text> + <text x="154.44" y="71.28001" >8b</text> + <text x="159.72" y="81.840004" >8a,</text> + <text x="159.72" y="92.4" >`</text> + <text x="191.40001" y="81.840004" >,aa</text> + <text x="201.96" y="92.4" >'</text> + <text x="133.32" y="60.72" >8a a8</text> + <text x="196.68001" y="60.72" ></text> <text x="22.44" y="71.28001" ></text> <text x="33" y="71.28001" ></text> <text x="43.56" y="71.28001" ></text> <text x="54.120003" y="71.28001" ></text> + <text x="143.88" y="81.840004" > </text> + <text x="101.64001" y="92.4" >Ybbd8</text> + <text x="165" y="92.4" >Ybbd8</text> </svg> diff --git a/static/db/contributed/fill/whimsy.flf b/static/db/contributed/rest/whimsy.flf similarity index 100% rename from static/db/contributed/fill/whimsy.flf rename to static/db/contributed/rest/whimsy.flf diff --git a/static/db/contributed/fill/whimsy.svg b/static/db/contributed/rest/whimsy.svg similarity index 68% rename from static/db/contributed/fill/whimsy.svg rename to static/db/contributed/rest/whimsy.svg index 9915636ffe6da1c97d90190de263301a2a16194e..14e9980b77371faa3700b41bd22cf0359905e31f 100644 --- a/static/db/contributed/fill/whimsy.svg +++ b/static/db/contributed/rest/whimsy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,21 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="84.48"></rect> + <text x="59.4" y="7.92" >d8b</text> + <text x="59.4" y="18.480001" >?88</text> + <text x="64.68" y="29.04" >88b</text> <text x="6.6000004" y="39.600002" >d888b8b</text> + <text x="64.68" y="39.600002" >888888b</text> + <text x="112.200005" y="39.600002" >d8888b</text> <text x="1.32" y="50.160004" >d8P'</text> <text x="27.720001" y="50.160004" >?88</text> + <text x="64.68" y="50.160004" >88P</text> + <text x="85.8" y="50.160004" >`?8bd8P'</text> + <text x="133.32" y="50.160004" >`P</text> <text x="1.32" y="60.72" >88b</text> <text x="27.720001" y="60.72" >,88b</text> - <text x="1.32" y="71.28001" >`?88P'`88b</text> + <text x="59.4" y="60.72" >d88,</text> + <text x="91.08" y="60.72" >d8888b</text> + <text x="1.32" y="71.28001" >`?88P'`88bd88'`?88P'`?888P'</text> </svg> diff --git a/static/db/contributed/effect/acrobatic.flf b/static/db/contributed/stroke/acrobatic.flf similarity index 100% rename from static/db/contributed/effect/acrobatic.flf rename to static/db/contributed/stroke/acrobatic.flf diff --git a/static/db/contributed/effect/acrobatic.svg b/static/db/contributed/stroke/acrobatic.svg similarity index 52% rename from static/db/contributed/effect/acrobatic.svg rename to static/db/contributed/stroke/acrobatic.svg index 30291771e4bd03efec44105b364cab1c61c280a3..4114f62f81c05a1e9920badd89b6600045081f1f 100644 --- a/static/db/contributed/effect/acrobatic.svg +++ b/static/db/contributed/stroke/acrobatic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="227.04001" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="100.32001" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="227.04001" height="105.600006"></rect> <line x1="50.160004" y1="7.92" x2="50.160004" y2="5.28" class="solid end_marked_open_circle"></line> <text x="43.56" y="18.480001" ><</text> <line x1="50.160004" y1="15.84" x2="66" y2="36.960003" class="solid end_marked_open_circle"></line> @@ -115,6 +132,30 @@ <polygon points="21.78,76.560005 17.16,81.840004 17.16,74.58" class="filled"></polygon> <line x1="79.200005" y1="73.920006" x2="80.520004" y2="76.560005" class="solid"></line> <polygon points="78.54,76.560005 83.16,81.840004 83.16,74.58" class="filled"></polygon> + <line x1="113.520004" y1="7.92" x2="113.520004" y2="5.28" class="solid end_marked_open_circle"></line> + <text x="106.920006" y="18.480001" ><</text> + <text x="117.48" y="18.480001" >></text> + <text x="117.48" y="29.04" >></text> + <line x1="105.600006" y1="31.68" x2="113.520004" y2="36.960003" class="solid end_marked_open_circle"></line> + <line x1="105.600006" y1="63.36" x2="113.520004" y2="68.64" class="solid end_marked_open_circle"></line> + <line x1="113.520004" y1="71.28001" x2="113.520004" y2="84.48" class="solid"></line> + <line x1="110.880005" y1="73.920006" x2="121.44" y2="95.04" class="solid"></line> + <line x1="132" y1="42.24" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="146.52" y1="39.600002" x2="145.20001" y2="36.960003" class="solid end_marked_open_circle"></line> + <text x="143.88" y="50.160004" >v</text> + <line x1="147.84001" y1="42.24" x2="158.40001" y2="63.36" class="solid"></line> + <text x="149.16" y="60.72" ><</text> + <line x1="158.40001" y1="63.36" x2="150.48001" y2="79.200005" class="solid end_marked_open_circle"></line> + <text x="149.16" y="92.4" >></text> + <line x1="209.88" y1="39.600002" x2="208.56001" y2="36.960003" class="solid end_marked_open_circle"></line> + <text x="196.68001" y="50.160004" >></text> + <line x1="182.16" y1="60.72" x2="182.16" y2="58.08" class="solid end_marked_open_circle"></line> + <text x="175.56001" y="71.28001" ><</text> + <line x1="179.52" y1="73.920006" x2="184.8" y2="84.48" class="solid"></line> + <text x="196.68001" y="92.4" >o</text> + <line x1="200.64001" y1="95.04" x2="211.20001" y2="95.04" class="solid"></line> + <text x="212.52" y="92.4" ><</text> + <line x1="221.76001" y1="84.48" x2="216.48001" y2="95.04" class="solid"></line> <g> <line x1="50.160004" y1="10.56" x2="50.160004" y2="15.84" class="solid"></line> <line x1="50.160004" y1="15.84" x2="36.960003" y2="42.24" class="solid"></line> @@ -123,4 +164,32 @@ <line x1="34.32" y1="42.24" x2="34.32" y2="47.52" class="solid"></line> <line x1="34.32" y1="47.52" x2="19.800001" y2="76.560005" class="solid"></line> </g> + <g> + <line x1="113.520004" y1="10.56" x2="113.520004" y2="15.84" class="solid"></line> + <line x1="113.520004" y1="15.84" x2="105.600006" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="113.520004" y1="39.600002" x2="113.520004" y2="47.52" class="solid"></line> + <line x1="113.520004" y1="42.24" x2="126.72" y2="42.24" class="solid"></line> + <line x1="113.520004" y1="47.52" x2="105.600006" y2="63.36" class="solid"></line> + <line x1="113.520004" y1="47.52" x2="121.44" y2="63.36" class="solid"></line> + <line x1="121.44" y1="63.36" x2="105.600006" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="149.16" y1="81.840004" x2="142.56001" y2="95.04" class="solid"></line> + <line x1="132" y1="95.04" x2="142.56001" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="195.36" y1="42.24" x2="205.92001" y2="42.24" class="solid"></line> + <line x1="195.36" y1="42.24" x2="184.8" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="211.20001" y1="42.24" x2="221.76001" y2="42.24" class="solid"></line> + <line x1="211.20001" y1="42.24" x2="216.48001" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="182.16" y1="63.36" x2="182.16" y2="68.64" class="solid"></line> + <line x1="182.16" y1="68.64" x2="195.36" y2="95.04" class="solid"></line> + <line x1="184.8" y1="95.04" x2="195.36" y2="95.04" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/bell.svg b/static/db/contributed/stroke/bell.svg index c8929e2eff0956eccdffcb75f657b2c46bd3d463..5310839bde82b14c2011d738c4d19463861ed1a6 100644 --- a/static/db/contributed/stroke/bell.svg +++ b/static/db/contributed/stroke/bell.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="126.72" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,21 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="126.72" height="63.36"></rect> <text x="33" y="39.600002" >'</text> <text x="1.32" y="50.160004" >,'</text> + <text x="54.120003" y="39.600002" >|</text> + <text x="80.520004" y="39.600002" >`</text> + <text x="54.120003" y="50.160004" >`</text> + <line x1="58.08" y1="52.800003" x2="73.920006" y2="52.800003" class="solid"></line> + <text x="75.240005" y="50.160004" >,'</text> + <line x1="100.32001" y1="21.12" x2="116.16" y2="21.12" class="solid"></line> + <line x1="92.4" y1="29.04" x2="92.4" y2="42.24" class="solid"></line> + <text x="96.36" y="29.04" >'</text> + <text x="117.48" y="29.04" >`</text> + <text x="96.36" y="50.160004" >`.</text> + <line x1="105.600006" y1="52.800003" x2="110.880005" y2="52.800003" class="solid"></line> + <text x="112.200005" y="50.160004" >.'</text> <g> <line x1="29.04" y1="7.92" x2="29.04" y2="15.84" class="solid"></line> <line x1="29.04" y1="15.84" x2="47.52" y2="52.800003" class="solid"></line> @@ -106,4 +135,15 @@ <line x1="26.400002" y1="10.56" x2="10.56" y2="42.24" class="solid"></line> <line x1="13.200001" y1="36.960003" x2="31.68" y2="36.960003" class="solid"></line> </g> + <g> + <line x1="52.800003" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="52.800003" y1="10.56" x2="55.440002" y2="15.84" class="solid"></line> + <line x1="55.440002" y1="15.84" x2="55.440002" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="63.36" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="63.36" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="84.48" y2="31.68" class="solid"></line> + <line x1="81.840004" y1="26.400002" x2="81.840004" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/contessa.svg b/static/db/contributed/stroke/contessa.svg index bea16c270837f94a9ffcbea40be6479699692476..e1eb5f0332bf3134dc7bce4c4e1ec036e02c07d0 100644 --- a/static/db/contributed/stroke/contessa.svg +++ b/static/db/contributed/stroke/contessa.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,29 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="58.08" height="42.24"></rect> <text x="1.32" y="7.92" >.</text> <line x1="5.28" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <text x="17.16" y="7.92" >.</text> <text x="1.32" y="18.480001" >[</text> <text x="17.16" y="18.480001" >]</text> + <text x="48.84" y="18.480001" >.</text> + <text x="22.44" y="29.04" >[</text> + <text x="48.84" y="29.04" >.</text> + <g> + <line x1="23.76" y1="7.92" x2="23.76" y2="21.12" class="solid"></line> + <line x1="23.76" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> + <line x1="26.400002" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> + </g> <g> <line x1="2.64" y1="21.12" x2="18.480001" y2="21.12" class="solid"></line> <line x1="2.64" y1="21.12" x2="2.64" y2="31.68" class="solid"></line> <line x1="18.480001" y1="21.12" x2="18.480001" y2="31.68" class="solid"></line> </g> + <g> + <line x1="42.24" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,0 42.24,31.68" class="nofill"></path> + <line x1="42.24" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/script/cursive.flf b/static/db/contributed/stroke/cursive.flf similarity index 100% rename from static/db/contributed/script/cursive.flf rename to static/db/contributed/stroke/cursive.flf diff --git a/static/db/contributed/script/cursive.svg b/static/db/contributed/stroke/cursive.svg similarity index 71% rename from static/db/contributed/script/cursive.svg rename to static/db/contributed/stroke/cursive.svg index 003049bbfb285ca9394a51139e94edf9b4a6e6c0..8faf04b37a650fda4a10cb950a581bb17041d835 100644 --- a/static/db/contributed/script/cursive.svg +++ b/static/db/contributed/stroke/cursive.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,8 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="52.800003"></rect> + <text x="54.120003" y="29.04" >.</text> <g> <line x1="15.84" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> @@ -103,6 +121,13 @@ <line x1="7.92" y1="26.400002" x2="23.76" y2="26.400002" class="solid"></line> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <path d="M 21.12,31.68 A 10.56,10.56 0,0,0 21.12,42.24" class="nofill"></path> - <line x1="21.12" y1="42.24" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="42.24" y1="10.56" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="31.68" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="21.12" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> + <path d="M 36.960003,31.68 A 10.56,10.56 0,0,1 36.960003,42.24" class="nofill"></path> + </g> + <g> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,0 47.52,42.24" class="nofill"></path> + <line x1="47.52" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/stroke/cyberlarge.svg b/static/db/contributed/stroke/cyberlarge.svg index c48ac24d5615a233332cc71ea7ab28acae73f4bf..28585760b39627d499d4f605781a32f5685a6a65 100644 --- a/static/db/contributed/stroke/cyberlarge.svg +++ b/static/db/contributed/stroke/cyberlarge.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,24 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="132" height="42.24"></rect> + <text x="80.520004" y="18.480001" >]</text> + <text x="80.520004" y="29.04" >]</text> <g> <line x1="5.28" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <line x1="7.92" y1="10.56" x2="7.92" y2="31.68" class="solid"></line> <line x1="7.92" y1="21.12" x2="39.600002" y2="21.12" class="solid"></line> <line x1="39.600002" y1="10.56" x2="39.600002" y2="31.68" class="solid"></line> </g> + <g> + <line x1="47.52" y1="10.56" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="31.68" class="solid"></line> + <line x1="50.160004" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="50.160004" y1="31.68" x2="79.200005" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="89.76" y1="10.56" x2="126.72" y2="10.56" class="solid"></line> + <line x1="92.4" y1="10.56" x2="92.4" y2="31.68" class="solid"></line> + <line x1="92.4" y1="31.68" x2="121.44" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/cybermedium.svg b/static/db/contributed/stroke/cybermedium.svg index ef90f46c49df734b723c8ee6cfc0f1d60f50906e..af885bde38aec2606406ed46db43183e8e18534d 100644 --- a/static/db/contributed/stroke/cybermedium.svg +++ b/static/db/contributed/stroke/cybermedium.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,24 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="42.24"></rect> + <text x="43.56" y="18.480001" >]</text> + <text x="43.56" y="29.04" >]</text> <g> <line x1="0" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="31.68" class="solid"></line> <line x1="2.64" y1="21.12" x2="18.480001" y2="21.12" class="solid"></line> <line x1="18.480001" y1="10.56" x2="18.480001" y2="31.68" class="solid"></line> </g> + <g> + <line x1="26.400002" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="31.68" class="solid"></line> + <line x1="29.04" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> + <line x1="29.04" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="52.800003" y1="10.56" x2="73.920006" y2="10.56" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/cybersmall.svg b/static/db/contributed/stroke/cybersmall.svg index b08b112c3ea401181c59fd0e02e07f4747dbdae5..8e50b471229b1f58f8724f9cb7e91805f87768be 100644 --- a/static/db/contributed/stroke/cybersmall.svg +++ b/static/db/contributed/stroke/cybersmall.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,23 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="84.48" height="31.68"></rect> + <line x1="36.960003" y1="14.52" x2="47.52" y2="14.52" class="solid"></line> + <line x1="36.960003" y1="17.16" x2="47.52" y2="17.16" class="solid"></line> + <text x="48.84" y="18.480001" >]</text> <g> <line x1="5.28" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="7.92" y1="10.56" x2="7.92" y2="21.12" class="solid"></line> <line x1="7.92" y1="15.84" x2="23.76" y2="15.84" class="solid"></line> <line x1="23.76" y1="10.56" x2="23.76" y2="21.12" class="solid"></line> </g> + <g> + <line x1="31.68" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="10.56" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="21.12" class="solid"></line> + <line x1="60.72" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/fourtops.svg b/static/db/contributed/stroke/fourtops.svg index 3d4ff4ba50f22a1f23101f2a3acd58fbbc92620f..31b251b74b7e510a39edd0c4d604873f45f7cd3b 100644 --- a/static/db/contributed/stroke/fourtops.svg +++ b/static/db/contributed/stroke/fourtops.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,19 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="73.920006" height="42.24"></rect> <g> <line x1="15.84" y1="0" x2="0" y2="31.68" class="solid"></line> <line x1="15.84" y1="0" x2="31.68" y2="31.68" class="solid"></line> <line x1="5.28" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> </g> + <g> + <line x1="34.32" y1="0" x2="34.32" y2="31.68" class="solid"></line> + <line x1="34.32" y1="15.84" x2="50.160004" y2="15.84" class="broken"></line> + <line x1="47.52" y1="10.56" x2="58.08" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <line x1="58.08" y1="10.56" x2="47.52" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="15.84" x2="68.64" y2="15.84" class="broken"></line> + <line x1="34.32" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/script/hollywood.flf b/static/db/contributed/stroke/hollywood.flf similarity index 100% rename from static/db/contributed/script/hollywood.flf rename to static/db/contributed/stroke/hollywood.flf diff --git a/static/db/contributed/script/hollywood.svg b/static/db/contributed/stroke/hollywood.svg similarity index 55% rename from static/db/contributed/script/hollywood.svg rename to static/db/contributed/stroke/hollywood.svg index da17b2a6a4dfe7312d954e56357291d79cb848dc..d487a4c8ba8f3826a21d7bef9cec1bf0a70285d5 100644 --- a/static/db/contributed/script/hollywood.svg +++ b/static/db/contributed/stroke/hollywood.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,32 +112,74 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="179.52" height="84.48"></rect> <text x="75.240005" y="7.92" >,</text> <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> <text x="69.96" y="18.480001" >'</text> + <line x1="116.16" y1="10.56" x2="110.880005" y2="21.12" class="solid"></line> + <text x="117.48" y="18.480001" >'</text> <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> <text x="59.4" y="29.04" >'</text> + <line x1="105.600006" y1="21.12" x2="100.32001" y2="31.68" class="solid"></line> + <text x="106.920006" y="29.04" >'</text> <text x="38.280003" y="39.600002" >,</text> <line x1="47.52" y1="31.68" x2="42.24" y2="42.24" class="solid"></line> <text x="48.84" y="39.600002" >'</text> + <line x1="95.04" y1="31.68" x2="89.76" y2="42.24" class="solid"></line> + <text x="96.36" y="39.600002" >'</text> <line x1="36.960003" y1="42.24" x2="31.68" y2="52.800003" class="solid"></line> <text x="54.120003" y="50.160004" >,</text> + <line x1="84.48" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <text x="85.8" y="50.160004" >'</text> + <line x1="132" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> + <text x="133.32" y="50.160004" >'</text> + <line x1="163.68001" y1="47.52" x2="174.24" y2="47.52" class="solid"></line> <line x1="26.400002" y1="52.800003" x2="21.12" y2="63.36" class="solid"></line> <text x="27.720001" y="60.72" >'</text> + <text x="75.240005" y="60.72" >'</text> + <text x="122.76" y="60.72" >'</text> <path d="M 5.28,63.36 A 10.56,10.56 0,0,0 5.28,73.920006" class="nofill"></path> <text x="6.6000004" y="71.28001" >,</text> <line x1="15.84" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> <text x="17.16" y="71.28001" >'</text> <text x="59.4" y="71.28001" >,</text> + <text x="85.8" y="71.28001" >,</text> + <line x1="95.04" y1="63.36" x2="89.76" y2="73.920006" class="solid"></line> + <text x="133.32" y="71.28001" >,</text> + <line x1="142.56001" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> <g> <line x1="79.200005" y1="10.56" x2="52.800003" y2="63.36" class="solid"></line> <path d="M 52.800003,63.36 A 10.56,10.56 0,0,0 52.800003,73.920006" class="nofill"></path> <line x1="52.800003" y1="73.920006" x2="58.08" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="100.32001" y1="42.24" x2="110.880005" y2="42.24" class="solid"></line> + <path d="M 110.880005,42.24 A 10.56,10.56 0,0,1 110.880005,52.800003" class="nofill"></path> + <line x1="110.880005" y1="52.800003" x2="109.560005" y2="55.440002" class="solid"></line> + <path d="M 109.560005,55.440002 A 5.28,5.28 0,0,1 105.600006,58.08" class="nofill"></path> + </g> + <g> + <line x1="137.28" y1="42.24" x2="158.40001" y2="42.24" class="solid"></line> + <path d="M 158.40001,42.24 A 10.56,10.56 0,0,1 158.40001,52.800003" class="nofill"></path> + </g> <g> <line x1="39.600002" y1="42.24" x2="39.600002" y2="44.88" class="solid"></line> <path d="M 39.600002,44.88 A 2.64,2.64 0,0,0 42.24,47.52" class="nofill"></path> <line x1="42.24" y1="47.52" x2="52.800003" y2="47.52" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="52.800003" x2="68.64" y2="63.36" class="solid"></line> + <path d="M 68.64,63.36 A 10.56,10.56 0,0,0 68.64,73.920006" class="nofill"></path> + <line x1="68.64" y1="73.920006" x2="84.48" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="52.800003" x2="100.32001" y2="63.36" class="solid"></line> + <path d="M 100.32001,63.36 A 10.56,10.56 0,0,0 100.32001,73.920006" class="nofill"></path> + <line x1="100.32001" y1="73.920006" x2="110.880005" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="52.800003" x2="116.16" y2="63.36" class="solid"></line> + <path d="M 116.16,63.36 A 10.56,10.56 0,0,0 116.16,73.920006" class="nofill"></path> + <line x1="116.16" y1="73.920006" x2="132" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/script/invita.flf b/static/db/contributed/stroke/invita.flf similarity index 100% rename from static/db/contributed/script/invita.flf rename to static/db/contributed/stroke/invita.flf diff --git a/static/db/contributed/script/invita.svg b/static/db/contributed/stroke/invita.svg similarity index 67% rename from static/db/contributed/script/invita.svg rename to static/db/contributed/stroke/invita.svg index 86a5139d180c0e38ffa07707663d8b4c298dd128..0f158210d898594901de4756915ab1fd44b41003 100644 --- a/static/db/contributed/script/invita.svg +++ b/static/db/contributed/stroke/invita.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="95.04" height="63.36"></rect> <text x="17.16" y="18.480001" >,</text> <g> <line x1="15.84" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> @@ -103,9 +120,21 @@ <line x1="31.68" y1="10.56" x2="10.56" y2="52.800003" class="solid"></line> <line x1="44.88" y1="10.56" x2="44.88" y2="42.24" class="solid"></line> <line x1="23.76" y1="26.400002" x2="44.88" y2="26.400002" class="solid"></line> - <line x1="44.88" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="44.88" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="58.08" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <path d="M 68.64,10.56 A 10.56,10.56 0,0,1 68.64,21.12" class="nofill"></path> + <path d="M 63.36,21.12 A 10.56,10.56 0,0,0 63.36,31.68" class="nofill"></path> + <line x1="68.64" y1="21.12" x2="63.36" y2="31.68" class="solid"></line> + <line x1="63.36" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + <path d="M 63.36,31.68 A 10.56,10.56 0,0,1 63.36,42.24" class="nofill"></path> <path d="M 5.28,31.68 A 10.56,10.56 0,0,1 5.28,42.24" class="nofill"></path> <path d="M 5.28,42.24 A 10.56,10.56 0,0,0 5.28,52.800003" class="nofill"></path> <line x1="5.28" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="79.200005" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + <path d="M 79.200005,31.68 A 10.56,10.56 0,0,0 79.200005,42.24" class="nofill"></path> + <line x1="79.200005" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/script/italic.flf b/static/db/contributed/stroke/italic.flf similarity index 100% rename from static/db/contributed/script/italic.flf rename to static/db/contributed/stroke/italic.flf diff --git a/static/db/contributed/script/italic.svg b/static/db/contributed/stroke/italic.svg similarity index 71% rename from static/db/contributed/script/italic.svg rename to static/db/contributed/stroke/italic.svg index 1c2bfe4487778ebf7be4a5c45a8396baf6341136..a1dc73fb090c3bbf5ba41a1ddb196d6e39f08847 100644 --- a/static/db/contributed/script/italic.svg +++ b/static/db/contributed/stroke/italic.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="47.52" height="42.24"></rect> <g> <line x1="10.56" y1="10.56" x2="18.480001" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> @@ -103,4 +120,13 @@ <line x1="18.480001" y1="10.56" x2="18.480001" y2="31.68" class="solid"></line> <path d="M 5.28,21.12 A 10.56,10.56 0,0,0 5.28,31.68" class="nofill"></path> </g> + <g> + <line x1="31.68" y1="10.56" x2="26.400002" y2="21.12" class="solid"></line> + <path d="M 26.400002,21.12 A 10.56,10.56 0,0,0 26.400002,31.68" class="nofill"></path> + <path d="M 26.400002,21.12 A 10.56,10.56 0,0,1 26.400002,31.68" class="nofill"></path> + </g> + <g> + <line x1="36.960003" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> + <path d="M 36.960003,21.12 A 10.56,10.56 0,0,0 36.960003,31.68" class="nofill"></path> + </g> </svg> diff --git a/static/db/contributed/effect/lcd.flf b/static/db/contributed/stroke/lcd.flf similarity index 100% rename from static/db/contributed/effect/lcd.flf rename to static/db/contributed/stroke/lcd.flf diff --git a/static/db/contributed/effect/lcd.svg b/static/db/contributed/stroke/lcd.svg similarity index 66% rename from static/db/contributed/effect/lcd.svg rename to static/db/contributed/stroke/lcd.svg index 835ce4db766c4867f0d50b2cd4e7ecd617881173..827b84f5801106a705a8b1ec1e1c4ccc6d28d1a5 100644 --- a/static/db/contributed/effect/lcd.svg +++ b/static/db/contributed/stroke/lcd.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,6 +112,15 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="63.36"></rect> <rect x="2.64" y="10.56" width="21.12" height="31.68" class="solid nofill" rx="0"></rect> + <line x1="44.88" y1="31.68" x2="44.88" y2="42.24" class="solid"></line> + <line x1="36.960003" y1="47.52" x2="42.24" y2="47.52" class="solid"></line> + <line x1="68.64" y1="26.400002" x2="73.920006" y2="26.400002" class="solid"></line> + <line x1="66" y1="31.68" x2="66" y2="42.24" class="solid"></line> + <line x1="68.64" y1="47.52" x2="73.920006" y2="47.52" class="solid"></line> + <g> + <line x1="34.32" y1="10.56" x2="34.32" y2="42.24" class="solid"></line> + <line x1="34.32" y1="26.400002" x2="42.24" y2="26.400002" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/maxfour.svg b/static/db/contributed/stroke/maxfour.svg index 3d4ff4ba50f22a1f23101f2a3acd58fbbc92620f..31b251b74b7e510a39edd0c4d604873f45f7cd3b 100644 --- a/static/db/contributed/stroke/maxfour.svg +++ b/static/db/contributed/stroke/maxfour.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,19 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="73.920006" height="42.24"></rect> <g> <line x1="15.84" y1="0" x2="0" y2="31.68" class="solid"></line> <line x1="15.84" y1="0" x2="31.68" y2="31.68" class="solid"></line> <line x1="5.28" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> </g> + <g> + <line x1="34.32" y1="0" x2="34.32" y2="31.68" class="solid"></line> + <line x1="34.32" y1="15.84" x2="50.160004" y2="15.84" class="broken"></line> + <line x1="47.52" y1="10.56" x2="58.08" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <line x1="58.08" y1="10.56" x2="47.52" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="15.84" x2="68.64" y2="15.84" class="broken"></line> + <line x1="34.32" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/mike.svg b/static/db/contributed/stroke/mike.svg index 27d6c79f1359cddb818128513d673efafb3c8db4..7a4bc7539b54c284b75190776e618ffb474a5ebe 100644 --- a/static/db/contributed/stroke/mike.svg +++ b/static/db/contributed/stroke/mike.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,14 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="58.08" height="31.68"></rect> + <line x1="29.04" y1="0" x2="29.04" y2="21.12" class="solid"></line> + <line x1="36.960003" y1="10.56" x2="31.68" y2="21.12" class="solid"></line> <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> <line x1="15.84" y1="10.56" x2="10.56" y2="21.12" class="solid"></line> <line x1="18.480001" y1="10.56" x2="18.480001" y2="21.12" class="solid"></line> + <g> + <line x1="44.88" y1="10.56" x2="44.88" y2="21.12" class="solid"></line> + <line x1="44.88" y1="21.12" x2="52.800003" y2="21.12" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/pepper.svg b/static/db/contributed/stroke/pepper.svg index c8a24b403fec5829429b00c924b8fb1e374f2873..c4f104b84311e89606a9dec9b2bfc103ae5258e0 100644 --- a/static/db/contributed/stroke/pepper.svg +++ b/static/db/contributed/stroke/pepper.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,22 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="47.52" height="42.24"></rect> <g> <line x1="10.56" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> <line x1="5.28" y1="21.12" x2="15.84" y2="21.12" class="solid"></line> <line x1="21.12" y1="10.56" x2="10.56" y2="31.68" class="solid"></line> </g> + <g> + <line x1="26.400002" y1="10.56" x2="15.84" y2="31.68" class="solid"></line> + <line x1="21.12" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> + <line x1="15.84" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> + <line x1="31.68" y1="21.12" x2="26.400002" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="36.960003" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> + <line x1="36.960003" y1="21.12" x2="31.68" y2="31.68" class="solid"></line> + <line x1="31.68" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/short.svg b/static/db/contributed/stroke/short.svg index f9f2c52ed0d9a535936dee3c2f66a755406cbbb0..1ec67d41f6f6a59ac2a702e44902d95c705335fd 100644 --- a/static/db/contributed/stroke/short.svg +++ b/static/db/contributed/stroke/short.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,17 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="42.24" height="31.68"></rect> + <line x1="18.480001" y1="0" x2="18.480001" y2="21.12" class="solid"></line> + <path d="M 21.12,10.56 A 10.56,10.56 0,0,1 21.12,21.12" class="nofill"></path> <g> <line x1="10.56" y1="0" x2="0" y2="21.12" class="solid"></line> <line x1="13.200001" y1="0" x2="13.200001" y2="21.12" class="solid"></line> <line x1="2.64" y1="15.84" x2="13.200001" y2="15.84" class="solid"></line> </g> + <g> + <line x1="31.68" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> + <path d="M 31.68,10.56 A 10.56,10.56 0,0,0 31.68,21.12" class="nofill"></path> + <line x1="31.68" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/script/slscript.flf b/static/db/contributed/stroke/slscript.flf similarity index 100% rename from static/db/contributed/script/slscript.flf rename to static/db/contributed/stroke/slscript.flf diff --git a/static/db/contributed/script/slscript.svg b/static/db/contributed/stroke/slscript.svg similarity index 71% rename from static/db/contributed/script/slscript.svg rename to static/db/contributed/stroke/slscript.svg index 003049bbfb285ca9394a51139e94edf9b4a6e6c0..8faf04b37a650fda4a10cb950a581bb17041d835 100644 --- a/static/db/contributed/script/slscript.svg +++ b/static/db/contributed/stroke/slscript.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,8 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="52.800003"></rect> + <text x="54.120003" y="29.04" >.</text> <g> <line x1="15.84" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> @@ -103,6 +121,13 @@ <line x1="7.92" y1="26.400002" x2="23.76" y2="26.400002" class="solid"></line> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <path d="M 21.12,31.68 A 10.56,10.56 0,0,0 21.12,42.24" class="nofill"></path> - <line x1="21.12" y1="42.24" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="42.24" y1="10.56" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="31.68" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="21.12" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> + <path d="M 36.960003,31.68 A 10.56,10.56 0,0,1 36.960003,42.24" class="nofill"></path> + </g> + <g> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,0 47.52,42.24" class="nofill"></path> + <line x1="47.52" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/contributed/stroke/stampatello.svg b/static/db/contributed/stroke/stampatello.svg index 07c2f6904999873a5b821e85bf148a28c0262172..c3afa31ec285340cdfd34d6fd04b27c2aff9c248 100644 --- a/static/db/contributed/stroke/stampatello.svg +++ b/static/db/contributed/stroke/stampatello.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="89.76" height="52.800003"></rect> <text x="22.44" y="7.92" >,</text> <text x="1.32" y="39.600002" >,'</text> + <text x="80.520004" y="18.480001" >.</text> + <text x="80.520004" y="39.600002" >'</text> <g> <line x1="29.04" y1="7.92" x2="29.04" y2="34.32" class="solid"></line> <path d="M 29.04,34.32 A 2.64,2.64 0,0,0 31.68,36.960003" class="nofill"></path> @@ -108,4 +127,21 @@ <line x1="39.600002" y1="29.04" x2="39.600002" y2="34.32" class="solid"></line> <path d="M 39.600002,34.32 A 2.64,2.64 0,0,1 36.960003,36.960003" class="nofill"></path> </g> + <g> + <line x1="50.160004" y1="7.92" x2="50.160004" y2="31.68" class="solid"></line> + <line x1="50.160004" y1="15.84" x2="58.08" y2="15.84" class="solid"></line> + <path d="M 58.08,15.84 A 2.64,2.64 0,0,1 60.72,18.480001" class="nofill"></path> + <line x1="60.72" y1="18.480001" x2="60.72" y2="34.32" class="solid"></line> + <line x1="50.160004" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> + <line x1="50.160004" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="36.960003" x2="58.08" y2="36.960003" class="solid"></line> + <path d="M 60.72,34.32 A 2.64,2.64 0,0,1 58.08,36.960003" class="nofill"></path> + </g> + <g> + <path d="M 73.920006,15.84 A 2.64,2.64 0,0,0 71.28001,18.480001" class="nofill"></path> + <line x1="71.28001" y1="18.480001" x2="71.28001" y2="34.32" class="solid"></line> + <line x1="73.920006" y1="15.84" x2="79.200005" y2="15.84" class="solid"></line> + <path d="M 71.28001,34.32 A 2.64,2.64 0,0,0 73.920006,36.960003" class="nofill"></path> + <line x1="73.920006" y1="36.960003" x2="79.200005" y2="36.960003" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/straight.svg b/static/db/contributed/stroke/straight.svg index 5f97995b8d6901ab2d248f2ecd01aff5ba9267b0..ee335dc80c3831a2ed00d434ecc096941f9daf7f 100644 --- a/static/db/contributed/stroke/straight.svg +++ b/static/db/contributed/stroke/straight.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,21 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="52.800003" height="42.24"></rect> <g> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> <line x1="10.56" y1="10.56" x2="21.12" y2="31.68" class="solid"></line> <line x1="2.64" y1="26.400002" x2="18.480001" y2="26.400002" class="solid"></line> </g> + <g> + <line x1="23.76" y1="10.56" x2="23.76" y2="31.68" class="solid"></line> + <line x1="23.76" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> + <line x1="23.76" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> + </g> + <g> + <line x1="42.24" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,0 42.24,31.68" class="nofill"></path> + <line x1="42.24" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/thin.svg b/static/db/contributed/stroke/thin.svg index e3fbd20b305e26cda50d30ee8d8274acff0a72c8..59b595fe1526d0ee7571e1fbc5ad63bdac78a4a5 100644 --- a/static/db/contributed/stroke/thin.svg +++ b/static/db/contributed/stroke/thin.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,37 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="84.48" height="63.36"></rect> + <text x="75.240005" y="29.04" >.</text> <text x="1.32" y="50.160004" >`</text> + <text x="75.240005" y="50.160004" >'</text> <g> <path d="M 5.28,15.84 A 2.64,2.64 0,0,0 2.64,18.480001" class="nofill"></path> <line x1="2.64" y1="18.480001" x2="2.64" y2="42.24" class="solid"></line> - <line x1="5.28" y1="15.84" x2="21.12" y2="15.84" class="solid"></line> + <line x1="5.28" y1="15.84" x2="23.76" y2="15.84" class="solid"></line> + <path d="M 23.76,15.84 A 5.28,5.28 0,0,1 29.04,21.12" class="nofill"></path> <path d="M 21.12,15.84 A 2.64,2.64 0,0,1 23.76,18.480001" class="nofill"></path> <line x1="23.76" y1="18.480001" x2="23.76" y2="44.88" class="solid"></line> <line x1="2.64" y1="26.400002" x2="23.76" y2="26.400002" class="solid"></line> </g> + <g> + <line x1="29.04" y1="10.56" x2="29.04" y2="44.88" class="solid"></line> + <line x1="29.04" y1="26.400002" x2="50.160004" y2="26.400002" class="solid"></line> + <path d="M 50.160004,26.400002 A 5.28,5.28 0,0,1 55.440002,31.68" class="nofill"></path> + <path d="M 29.04,44.88 A 2.64,2.64 0,0,0 31.68,47.52" class="nofill"></path> + <line x1="31.68" y1="47.52" x2="50.160004" y2="47.52" class="solid"></line> + <path d="M 55.440002,42.24 A 5.28,5.28 0,0,1 50.160004,47.52" class="nofill"></path> + </g> + <g> + <path d="M 47.52,26.400002 A 2.64,2.64 0,0,1 50.160004,29.04" class="nofill"></path> + <line x1="50.160004" y1="29.04" x2="50.160004" y2="44.88" class="solid"></line> + <path d="M 50.160004,44.88 A 2.64,2.64 0,0,1 47.52,47.52" class="nofill"></path> + </g> + <g> + <path d="M 58.08,26.400002 A 2.64,2.64 0,0,0 55.440002,29.04" class="nofill"></path> + <line x1="55.440002" y1="29.04" x2="55.440002" y2="44.88" class="solid"></line> + <line x1="58.08" y1="26.400002" x2="73.920006" y2="26.400002" class="solid"></line> + <path d="M 55.440002,44.88 A 2.64,2.64 0,0,0 58.08,47.52" class="nofill"></path> + <line x1="58.08" y1="47.52" x2="73.920006" y2="47.52" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/threepoint.svg b/static/db/contributed/stroke/threepoint.svg index ca8ba57b2aae9fd5b54d2c7525e394a168ab56cf..e6df8bb75ade801da24a1bf616f760eacb8fdfd1 100644 --- a/static/db/contributed/stroke/threepoint.svg +++ b/static/db/contributed/stroke/threepoint.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,21 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="52.800003" height="31.68"></rect> <g> <line x1="10.56" y1="0" x2="0" y2="21.12" class="solid"></line> <line x1="10.56" y1="0" x2="21.12" y2="21.12" class="solid"></line> <line x1="2.64" y1="15.84" x2="18.480001" y2="15.84" class="broken"></line> </g> + <g> + <line x1="23.76" y1="0" x2="23.76" y2="21.12" class="solid"></line> + <line x1="23.76" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> + <line x1="23.76" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> + <path d="M 31.68,10.56 A 10.56,10.56 0,0,1 31.68,21.12" class="nofill"></path> + </g> + <g> + <line x1="42.24" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> + <path d="M 42.24,10.56 A 10.56,10.56 0,0,0 42.24,21.12" class="nofill"></path> + <line x1="42.24" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/effect/tinker-toy.flf b/static/db/contributed/stroke/tinker-toy.flf similarity index 100% rename from static/db/contributed/effect/tinker-toy.flf rename to static/db/contributed/stroke/tinker-toy.flf diff --git a/static/db/contributed/effect/tinker-toy.svg b/static/db/contributed/stroke/tinker-toy.svg similarity index 61% rename from static/db/contributed/effect/tinker-toy.svg rename to static/db/contributed/stroke/tinker-toy.svg index 3aa350f82b818eb13bd61cc3e0de24b42b5bff16..f646786a7004f9a4df25c68c5a3245ea18576d04 100644 --- a/static/db/contributed/effect/tinker-toy.svg +++ b/static/db/contributed/stroke/tinker-toy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,22 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="63.36"></rect> <line x1="11.88" y1="7.92" x2="13.200001" y2="5.28" class="solid end_marked_big_open_circle"></line> <line x1="14.52" y1="7.92" x2="22.44" y2="23.76" class="solid"></line> + <line x1="29.04" y1="7.92" x2="29.04" y2="5.28" class="solid end_marked_open_circle"></line> <line x1="10.56" y1="10.56" x2="2.64" y2="26.400002" class="solid end_marked_open_circle"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="23.76" class="solid"></line> <line x1="2.64" y1="29.04" x2="2.64" y2="47.52" class="solid end_marked_open_circle"></line> <line x1="5.28" y1="26.400002" x2="23.76" y2="26.400002" class="solid end_marked_open_circle"></line> - <line x1="23.76" y1="29.04" x2="23.76" y2="47.52" class="solid end_marked_open_circle"></line> + <line x1="23.76" y1="29.04" x2="29.04" y2="26.400002" class="solid end_marked_big_open_circle"></line> + <line x1="29.04" y1="29.04" x2="29.04" y2="47.52" class="solid end_marked_open_circle"></line> + <line x1="31.68" y1="26.400002" x2="39.600002" y2="26.400002" class="solid end_marked_open_circle"></line> + <line x1="23.76" y1="31.68" x2="23.76" y2="47.52" class="solid end_marked_open_circle"></line> + <line x1="44.88" y1="31.68" x2="44.88" y2="42.24" class="solid"></line> + <line x1="31.68" y1="47.52" x2="39.600002" y2="47.52" class="solid end_marked_open_circle"></line> + <line x1="68.64" y1="26.400002" x2="60.72" y2="26.400002" class="solid end_marked_open_circle"></line> + <circle cx="71.28001" cy="26.400002" r="1.98" class="nofill"></circle> + <line x1="55.440002" y1="31.68" x2="60.72" y2="47.52" class="solid end_marked_open_circle"></line> + <line x1="63.36" y1="47.52" x2="71.28001" y2="47.52" class="solid end_marked_open_circle"></line> </svg> diff --git a/static/db/contributed/stroke/twopoint.svg b/static/db/contributed/stroke/twopoint.svg index 1908f63c31634f2df8ad9fac501527f61d699bc6..f9675d92ce4ed0946a9dbb930ec34975feb62683 100644 --- a/static/db/contributed/stroke/twopoint.svg +++ b/static/db/contributed/stroke/twopoint.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,6 +112,17 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="47.52" height="31.68"></rect> <rect x="2.64" y="0" width="10.56" height="21.12" class="broken nofill" rx="0"></rect> + <g> + <line x1="18.480001" y1="0" x2="18.480001" y2="21.12" class="solid"></line> + <line x1="18.480001" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> + <line x1="18.480001" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> + <path d="M 26.400002,10.56 A 10.56,10.56 0,0,1 26.400002,21.12" class="nofill"></path> + </g> + <g> + <line x1="36.960003" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,0 36.960003,21.12" class="nofill"></path> + <line x1="36.960003" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> + </g> </svg> diff --git a/static/db/contributed/stroke/weird.svg b/static/db/contributed/stroke/weird.svg index 9aefcb7662697454d6ad10e3296583324ad7a540..dff6106fe2b4d30edcdfc530c0d5ea260dc81659 100644 --- a/static/db/contributed/stroke/weird.svg +++ b/static/db/contributed/stroke/weird.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,8 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="63.36"></rect> + <line x1="36.960003" y1="10.56" x2="31.68" y2="21.12" class="solid"></line> <text x="22.44" y="39.600002" >)</text> <line x1="21.12" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> <g> @@ -106,4 +124,17 @@ <line x1="2.64" y1="31.68" x2="23.76" y2="31.68" class="solid"></line> <line x1="2.64" y1="31.68" x2="2.64" y2="52.800003" class="solid"></line> </g> + <g> + <path d="M 29.04,21.12 A 7.92,7.92 0,0,0 29.04,31.68" class="nofill"></path> + <line x1="29.04" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + <line x1="29.04" y1="31.68" x2="29.04" y2="52.800003" class="solid"></line> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,1 47.52,42.24" class="nofill"></path> + <line x1="29.04" y1="52.800003" x2="42.24" y2="52.800003" class="solid"></line> + <line x1="47.52" y1="42.24" x2="42.24" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="55.440002" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="52.800003" class="solid"></line> + <line x1="55.440002" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + </g> </svg> diff --git a/static/db/default/block/big.svg b/static/db/default/block/big.svg index 8f1582eb3e6d8e5d019961d7afce01ae9d2ef1e2..cf6d1fe32348ad68faac320194064ab87e19ed94 100644 --- a/static/db/default/block/big.svg +++ b/static/db/default/block/big.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,25 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="73.920006"></rect> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="52.800003" class="solid"></line> + <text x="59.4" y="60.72" >.</text> + <g> + <line x1="50.160004" y1="10.56" x2="60.72" y2="10.56" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="52.800003" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="34.32" class="solid"></line> + <line x1="60.72" y1="31.68" x2="73.920006" y2="31.68" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="89.76" y2="63.36" class="solid"></line> + <line x1="89.76" y1="63.36" x2="108.240005" y2="63.36" class="solid"></line> + <line x1="89.76" y1="31.68" x2="108.240005" y2="31.68" class="solid"></line> + <line x1="89.76" y1="31.68" x2="73.920006" y2="63.36" class="solid"></line> + <line x1="63.36" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <line x1="95.04" y1="42.24" x2="108.240005" y2="42.24" class="solid"></line> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="42.24" class="solid"></line> + <path d="M 95.04,42.24 A 10.56,10.56 0,0,0 95.04,52.800003" class="nofill"></path> + <line x1="95.04" y1="52.800003" x2="108.240005" y2="52.800003" class="solid"></line> + <line x1="108.240005" y1="52.800003" x2="108.240005" y2="63.36" class="solid"></line> + </g> <g> <line x1="26.400002" y1="10.56" x2="0" y2="63.36" class="solid"></line> <line x1="26.400002" y1="10.56" x2="52.800003" y2="63.36" class="solid"></line> @@ -103,10 +138,16 @@ <line x1="15.84" y1="52.800003" x2="36.960003" y2="52.800003" class="solid"></line> <line x1="15.84" y1="52.800003" x2="10.56" y2="63.36" class="solid"></line> <line x1="36.960003" y1="52.800003" x2="42.24" y2="63.36" class="solid"></line> - <line x1="42.24" y1="63.36" x2="52.800003" y2="63.36" class="solid"></line> + <line x1="42.24" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> </g> <g> <line x1="26.400002" y1="31.68" x2="21.12" y2="42.24" class="solid"></line> <line x1="26.400002" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> </g> + <g> + <line x1="60.72" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <line x1="60.72" y1="42.24" x2="60.72" y2="52.800003" class="solid"></line> + <line x1="60.72" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + <path d="M 68.64,42.24 A 10.56,10.56 0,0,1 68.64,52.800003" class="nofill"></path> + </g> </svg> diff --git a/static/db/default/block/slant.svg b/static/db/default/block/slant.svg index 8077507bfc98cefb01901b2316c798b86bc6acdb..0bf3393f95b9741790db574d02acc2949a88edda 100644 --- a/static/db/default/block/slant.svg +++ b/static/db/default/block/slant.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,17 +112,39 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="63.36"></rect> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <line x1="29.04" y1="21.12" x2="29.04" y2="31.68" class="solid"></line> + <text x="48.84" y="50.160004" >.</text> <g> <line x1="21.12" y1="10.56" x2="39.600002" y2="10.56" class="solid"></line> <line x1="21.12" y1="10.56" x2="0" y2="52.800003" class="solid"></line> - <line x1="39.600002" y1="10.56" x2="39.600002" y2="52.800003" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="42.24" class="solid"></line> <line x1="0" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <line x1="58.08" y1="10.56" x2="36.960003" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <line x1="63.36" y1="21.12" x2="73.920006" y2="21.12" class="solid"></line> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="84.48" y1="21.12" x2="110.880005" y2="21.12" class="solid"></line> + <line x1="84.48" y1="21.12" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="52.800003" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="42.24" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="21.12" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <line x1="15.84" y1="42.24" x2="10.56" y2="52.800003" class="solid"></line> <line x1="29.04" y1="42.24" x2="29.04" y2="52.800003" class="solid"></line> - <line x1="29.04" y1="52.800003" x2="39.600002" y2="52.800003" class="solid"></line> + <line x1="29.04" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="68.64" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/default/block/small.svg b/static/db/default/block/small.svg index 275a8a0684cd67c1622e07c27192aaeb9d8bc5c7..910d725e5053113ba468f5b8b9342a457bb16de1 100644 --- a/static/db/default/block/small.svg +++ b/static/db/default/block/small.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="89.76" height="52.800003"></rect> + <line x1="47.52" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <text x="43.56" y="39.600002" >.</text> <g> <line x1="15.84" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> @@ -105,6 +124,19 @@ <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> - <line x1="26.400002" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="26.400002" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="34.32" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="31.68" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="23.76" class="solid"></line> + <line x1="44.88" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="68.64" y2="42.24" class="solid"></line> + <line x1="68.64" y1="21.12" x2="81.840004" y2="21.12" class="solid"></line> + <line x1="68.64" y1="21.12" x2="58.08" y2="42.24" class="solid"></line> + <line x1="47.52" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="81.840004" y2="31.68" class="solid"></line> + <line x1="81.840004" y1="21.12" x2="81.840004" y2="42.24" class="solid"></line> + <line x1="68.64" y1="42.24" x2="81.840004" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/default/block/smslant.svg b/static/db/default/block/smslant.svg index 9ef2e4fd7ac93b0a1a50d2a47e2cc9db79f0fd6f..2df2286d769baf6951563736e387a32b3f534c42 100644 --- a/static/db/default/block/smslant.svg +++ b/static/db/default/block/smslant.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,30 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="95.04" height="52.800003"></rect> <line x1="21.12" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> + <line x1="47.52" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <text x="43.56" y="39.600002" >.</text> <g> <line x1="15.84" y1="10.56" x2="34.32" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> - <line x1="34.32" y1="10.56" x2="34.32" y2="42.24" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="31.68" class="solid"></line> <line x1="0" y1="42.24" x2="10.56" y2="42.24" class="solid"></line> + <line x1="47.52" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="47.52" y1="10.56" x2="31.68" y2="42.24" class="solid"></line> + <line x1="58.08" y1="10.56" x2="52.800003" y2="21.12" class="solid"></line> <line x1="15.84" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> - <line x1="23.76" y1="42.24" x2="34.32" y2="42.24" class="solid"></line> + <line x1="23.76" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="21.12" x2="89.76" y2="21.12" class="solid"></line> + <line x1="68.64" y1="21.12" x2="58.08" y2="42.24" class="solid"></line> + <line x1="47.52" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <line x1="58.08" y1="21.12" x2="68.64" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + <line x1="89.76" y1="21.12" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="68.64" y1="42.24" x2="79.200005" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/default/block/standard.svg b/static/db/default/block/standard.svg index 02b2d014ea0474b50ca4b411089f5d49049eea9b..99abd1371b4e29d9fef5cd6366ee0ddfeea04f43 100644 --- a/static/db/default/block/standard.svg +++ b/static/db/default/block/standard.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="63.36"></rect> <line x1="21.12" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="42.24" class="solid"></line> + <text x="54.120003" y="50.160004" >.</text> <g> <line x1="21.12" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="21.12" y1="10.56" x2="0" y2="52.800003" class="solid"></line> @@ -105,6 +124,28 @@ <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <line x1="15.84" y1="42.24" x2="10.56" y2="52.800003" class="solid"></line> <line x1="31.68" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> - <line x1="36.960003" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="36.960003" y1="52.800003" x2="52.800003" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="44.88" y1="10.56" x2="55.440002" y2="10.56" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="42.24" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="23.76" class="solid"></line> + <line x1="55.440002" y1="21.12" x2="68.64" y2="21.12" class="solid"></line> + <line x1="68.64" y1="21.12" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="102.96001" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="21.12" x2="102.96001" y2="21.12" class="solid"></line> + <line x1="84.48" y1="21.12" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="52.800003" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="31.68" x2="102.96001" y2="31.68" class="solid"></line> + <line x1="102.96001" y1="21.12" x2="102.96001" y2="31.68" class="solid"></line> + <path d="M 89.76,31.68 A 10.56,10.56 0,0,0 89.76,42.24" class="nofill"></path> + <line x1="89.76" y1="42.24" x2="102.96001" y2="42.24" class="solid"></line> + <line x1="102.96001" y1="42.24" x2="102.96001" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="55.440002" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="42.24" class="solid"></line> + <line x1="55.440002" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <path d="M 63.36,31.68 A 10.56,10.56 0,0,1 63.36,42.24" class="nofill"></path> </g> </svg> diff --git a/static/db/default/fill/banner.svg b/static/db/default/fill/banner.svg index 745f34e470fbd6977ccf5c23d6874f03c465c223..b002f9e94a7ef65ccb1a276ce3da54c556394f6e 100644 --- a/static/db/default/fill/banner.svg +++ b/static/db/default/fill/banner.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="84.48"></rect> <text x="17.16" y="7.92" >#</text> <text x="11.88" y="18.480001" >#</text> <text x="22.44" y="18.480001" >#</text> @@ -120,4 +137,48 @@ <line x1="34.32" y1="60.72" x2="34.32" y2="66" class="solid"></line> <rect x="0" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="31.68" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="42.24" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="18.480001" x2="44.88" y2="23.76" class="solid"></line> + <rect x="47.52" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="58.08" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="63.36" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="42.24" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <text x="69.96" y="29.04" >#</text> + <rect x="42.24" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> + <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="58.08" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="42.24" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="50.160004" x2="44.88" y2="55.440002" class="solid"></line> + <rect x="68.64" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="50.160004" x2="71.28001" y2="55.440002" class="solid"></line> + <rect x="42.24" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="60.72" x2="44.88" y2="66" class="solid"></line> + <rect x="68.64" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="89.76" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="95.04" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="29.04" x2="81.840004" y2="34.32" class="solid"></line> + <text x="106.920006" y="29.04" >#</text> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="39.600002" x2="81.840004" y2="44.88" class="solid"></line> + <rect x="79.200005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="50.160004" x2="81.840004" y2="55.440002" class="solid"></line> + <rect x="79.200005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="106.920006" y="60.72" >#</text> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> </svg> diff --git a/static/db/default/effect/shadow.flf b/static/db/default/open/shadow.flf similarity index 100% rename from static/db/default/effect/shadow.flf rename to static/db/default/open/shadow.flf diff --git a/static/db/default/effect/shadow.svg b/static/db/default/open/shadow.svg similarity index 59% rename from static/db/default/effect/shadow.svg rename to static/db/default/open/shadow.svg index 925f37b94f6ffe547afe31b528df8786facac689..c481e7cfb9a0b4c16e0b5cdb52f5bfe9331d264d 100644 --- a/static/db/default/effect/shadow.svg +++ b/static/db/default/open/shadow.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="105.600006" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,35 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="105.600006" height="52.800003"></rect> + <line x1="50.160004" y1="0" x2="50.160004" y2="10.56" class="solid"></line> <line x1="15.84" y1="21.12" x2="21.12" y2="21.12" class="solid"></line> + <line x1="63.36" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <text x="48.84" y="39.600002" >.</text> <g> <line x1="21.12" y1="0" x2="42.24" y2="42.24" class="solid"></line> - <line x1="31.68" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> + <line x1="31.68" y1="42.24" x2="47.52" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="47.52" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="50.160004" y1="21.12" x2="50.160004" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="21.12" x2="97.68" y2="21.12" class="solid"></line> + <line x1="97.68" y1="10.56" x2="97.68" y2="21.12" class="solid"></line> + <path d="M 84.48,21.12 A 10.56,10.56 0,0,0 84.48,31.68" class="nofill"></path> </g> <g> <line x1="10.56" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> <line x1="0" y1="42.24" x2="5.28" y2="42.24" class="solid"></line> <line x1="10.56" y1="31.68" x2="5.28" y2="42.24" class="solid"></line> </g> + <g> + <line x1="71.28001" y1="21.12" x2="71.28001" y2="26.400002" class="solid"></line> + <line x1="71.28001" y1="26.400002" x2="63.36" y2="42.24" class="solid"></line> + <line x1="71.28001" y1="26.400002" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="97.68" y2="42.24" class="solid"></line> + <line x1="97.68" y1="31.68" x2="97.68" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/default/effect/smshadow.flf b/static/db/default/open/smshadow.flf similarity index 100% rename from static/db/default/effect/smshadow.flf rename to static/db/default/open/smshadow.flf diff --git a/static/db/default/effect/smshadow.svg b/static/db/default/open/smshadow.svg similarity index 65% rename from static/db/default/effect/smshadow.svg rename to static/db/default/open/smshadow.svg index 718eca86ce9a4edb753c07ff52819c87481bb2c6..b130ba0cd47d017af450614982ab213433ce316a 100644 --- a/static/db/default/effect/smshadow.svg +++ b/static/db/default/open/smshadow.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,25 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="84.48" height="42.24"></rect> + <line x1="39.600002" y1="0" x2="39.600002" y2="10.56" class="solid"></line> + <line x1="42.24" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + <text x="38.280003" y="29.04" >.</text> <g> <line x1="15.84" y1="0" x2="31.68" y2="31.68" class="solid"></line> - <line x1="21.12" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> + <line x1="21.12" y1="31.68" x2="36.960003" y2="31.68" class="solid"></line> </g> <g> <line x1="10.56" y1="21.12" x2="15.84" y2="21.12" class="solid"></line> <line x1="0" y1="31.68" x2="5.28" y2="31.68" class="solid"></line> <line x1="10.56" y1="21.12" x2="5.28" y2="31.68" class="solid"></line> </g> + <g> + <line x1="52.800003" y1="10.56" x2="63.36" y2="31.68" class="solid"></line> + <line x1="68.64" y1="21.12" x2="76.560005" y2="21.12" class="solid"></line> + <line x1="76.560005" y1="10.56" x2="76.560005" y2="31.68" class="solid"></line> + <line x1="63.36" y1="31.68" x2="76.560005" y2="31.68" class="solid"></line> + <line x1="42.24" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/default/pattern/block.svg b/static/db/default/pattern/block.svg index 363cba74b098623fb3417914996aa2d5acf74c07..7f556b7f36774701e7399e6c55223e36340727a1 100644 --- a/static/db/default/pattern/block.svg +++ b/static/db/default/pattern/block.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="73.920006"></rect> <g> <line x1="7.92" y1="21.12" x2="29.04" y2="21.12" class="solid"></line> <line x1="18.480001" y1="10.56" x2="18.480001" y2="21.12" class="solid"></line> @@ -114,4 +131,36 @@ <line x1="31.68" y1="52.800003" x2="39.600002" y2="52.800003" class="solid"></line> <line x1="31.68" y1="63.36" x2="39.600002" y2="63.36" class="solid"></line> </g> + <g> + <line x1="52.800003" y1="21.12" x2="60.72" y2="21.12" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="63.36" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="60.72" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="52.800003" x2="60.72" y2="52.800003" class="solid"></line> + <line x1="52.800003" y1="63.36" x2="81.840004" y2="63.36" class="solid"></line> + <line x1="71.28001" y1="52.800003" x2="71.28001" y2="63.36" class="solid"></line> + <line x1="84.48" y1="42.24" x2="92.4" y2="42.24" class="solid"></line> + <line x1="92.4" y1="31.68" x2="92.4" y2="52.800003" class="solid"></line> + <line x1="81.840004" y1="52.800003" x2="92.4" y2="52.800003" class="solid"></line> + <line x1="81.840004" y1="52.800003" x2="81.840004" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="52.800003" y1="31.68" x2="81.840004" y2="31.68" class="solid"></line> + <line x1="71.28001" y1="21.12" x2="71.28001" y2="31.68" class="solid"></line> + <line x1="81.840004" y1="21.12" x2="81.840004" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="113.520004" y1="31.68" x2="145.20001" y2="31.68" class="solid"></line> + <line x1="124.08" y1="21.12" x2="124.08" y2="31.68" class="solid"></line> + <line x1="134.64" y1="21.12" x2="134.64" y2="31.68" class="solid"></line> + <line x1="145.20001" y1="21.12" x2="145.20001" y2="31.68" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="113.520004" y2="42.24" class="solid"></line> + <line x1="113.520004" y1="31.68" x2="113.520004" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="52.800003" x2="113.520004" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="63.36" x2="145.20001" y2="63.36" class="solid"></line> + <line x1="124.08" y1="52.800003" x2="124.08" y2="63.36" class="solid"></line> + <line x1="134.64" y1="52.800003" x2="134.64" y2="63.36" class="solid"></line> + <line x1="145.20001" y1="52.800003" x2="145.20001" y2="63.36" class="solid"></line> + </g> </svg> diff --git a/static/db/default/pattern/lean.svg b/static/db/default/pattern/lean.svg index 630762f7b2fe58a9c1015a4d00c5fa3a19264d55..1cdd6e19921480dd1c685d49969f1169020479b6 100644 --- a/static/db/default/pattern/lean.svg +++ b/static/db/default/pattern/lean.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="73.920006"></rect> <g> <line x1="31.68" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> <line x1="42.24" y1="10.56" x2="36.960003" y2="21.12" class="solid"></line> @@ -116,4 +133,40 @@ <line x1="36.960003" y1="52.800003" x2="42.24" y2="52.800003" class="solid"></line> <line x1="31.68" y1="63.36" x2="36.960003" y2="63.36" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="84.48" y1="10.56" x2="58.08" y2="63.36" class="solid"></line> + <line x1="63.36" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <line x1="58.08" y1="52.800003" x2="63.36" y2="52.800003" class="solid"></line> + <line x1="52.800003" y1="63.36" x2="79.200005" y2="63.36" class="solid"></line> + <line x1="73.920006" y1="52.800003" x2="68.64" y2="63.36" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="79.200005" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> + <line x1="89.76" y1="21.12" x2="84.48" y2="31.68" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="95.04" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="42.24" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="132" y1="31.68" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="137.28" y2="31.68" class="solid"></line> + <line x1="153.12001" y1="21.12" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="158.40001" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="42.24" x2="121.44" y2="42.24" class="solid"></line> + <line x1="126.72" y1="31.68" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="52.800003" x2="116.16" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="63.36" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="121.44" y2="63.36" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + <line x1="147.84001" y1="52.800003" x2="142.56001" y2="63.36" class="solid"></line> + </g> </svg> diff --git a/static/db/default/stroke/mini.svg b/static/db/default/stroke/mini.svg index 5f97995b8d6901ab2d248f2ecd01aff5ba9267b0..ee335dc80c3831a2ed00d434ecc096941f9daf7f 100644 --- a/static/db/default/stroke/mini.svg +++ b/static/db/default/stroke/mini.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,21 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="52.800003" height="42.24"></rect> <g> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> <line x1="10.56" y1="10.56" x2="21.12" y2="31.68" class="solid"></line> <line x1="2.64" y1="26.400002" x2="18.480001" y2="26.400002" class="solid"></line> </g> + <g> + <line x1="23.76" y1="10.56" x2="23.76" y2="31.68" class="solid"></line> + <line x1="23.76" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> + <line x1="23.76" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> + </g> + <g> + <line x1="42.24" y1="21.12" x2="47.52" y2="21.12" class="solid"></line> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,0 42.24,31.68" class="nofill"></path> + <line x1="42.24" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/default/script/script.flf b/static/db/default/stroke/script.flf similarity index 100% rename from static/db/default/script/script.flf rename to static/db/default/stroke/script.flf diff --git a/static/db/default/script/script.svg b/static/db/default/stroke/script.svg similarity index 64% rename from static/db/default/script/script.svg rename to static/db/default/stroke/script.svg index e5fd8f0dfc430ff5a693443fad195d2d89269aab..b61880f29e31f86ab6114259c646cf6dd0c0fe69 100644 --- a/static/db/default/script/script.svg +++ b/static/db/default/stroke/script.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="95.04" height="63.36"></rect> <text x="27.720001" y="7.92" >,</text> <text x="1.32" y="29.04" >|</text> <g> @@ -104,8 +121,21 @@ <line x1="29.04" y1="10.56" x2="29.04" y2="36.960003" class="solid"></line> <line x1="29.04" y1="36.960003" x2="21.12" y2="52.800003" class="solid"></line> <line x1="26.400002" y1="42.24" x2="31.68" y2="52.800003" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="50.160004" y2="10.56" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="36.960003" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="26.400002" class="solid"></line> + <line x1="50.160004" y1="26.400002" x2="36.960003" y2="52.800003" class="solid"></line> + <line x1="50.160004" y1="26.400002" x2="58.08" y2="42.24" class="solid"></line> + <line x1="39.600002" y1="36.960003" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> <line x1="31.68" y1="52.800003" x2="36.960003" y2="52.800003" class="solid"></line> - <line x1="42.24" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> + <line x1="47.52" y1="52.800003" x2="52.800003" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="42.24" x2="52.800003" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="31.68" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="68.64" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + <line x1="63.36" y1="42.24" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="68.64" y1="52.800003" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="42.24" x2="84.48" y2="52.800003" class="solid"></line> <line x1="2.64" y1="31.68" x2="2.64" y2="36.960003" class="solid"></line> <line x1="2.64" y1="36.960003" x2="10.56" y2="52.800003" class="solid"></line> <line x1="10.56" y1="52.800003" x2="21.12" y2="52.800003" class="solid"></line> diff --git a/static/db/default/script/smscript.flf b/static/db/default/stroke/smscript.flf similarity index 100% rename from static/db/default/script/smscript.flf rename to static/db/default/stroke/smscript.flf diff --git a/static/db/default/script/smscript.svg b/static/db/default/stroke/smscript.svg similarity index 66% rename from static/db/default/script/smscript.svg rename to static/db/default/stroke/smscript.svg index 23f0cdc9047ef67820563e361dc97697f47c929b..b4058de4f00db151e6f394bcab33d161b31d73fa 100644 --- a/static/db/default/script/smscript.svg +++ b/static/db/default/stroke/smscript.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,18 +112,29 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="79.200005" height="52.800003"></rect> <text x="22.44" y="7.92" >,</text> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,1 36.960003,21.12" class="nofill"></path> <g> <line x1="10.56" y1="10.56" x2="23.76" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> <line x1="23.76" y1="10.56" x2="23.76" y2="26.400002" class="solid"></line> <line x1="23.76" y1="26.400002" x2="15.84" y2="42.24" class="solid"></line> <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> - <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> - <line x1="36.960003" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> <line x1="2.64" y1="21.12" x2="2.64" y2="26.400002" class="solid"></line> <line x1="2.64" y1="26.400002" x2="10.56" y2="42.24" class="solid"></line> <line x1="10.56" y1="42.24" x2="15.84" y2="42.24" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="26.400002" class="solid"></line> + <line x1="34.32" y1="26.400002" x2="42.24" y2="42.24" class="solid"></line> + <line x1="58.08" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <line x1="42.24" y1="21.12" x2="31.68" y2="42.24" class="solid"></line> + <line x1="42.24" y1="21.12" x2="47.52" y2="31.68" class="solid"></line> + <line x1="47.52" y1="31.68" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> + <line x1="47.52" y1="31.68" x2="42.24" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + <line x1="58.08" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="68.64" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/jave/3d/3d_diagonal.svg b/static/db/jave/3d/3d_diagonal.svg index 6e9fe306215598ec009690543ff8ab980fd465d8..78a79b05396e6413598cfaed5afd7d4d22074e74 100644 --- a/static/db/jave/3d/3d_diagonal.svg +++ b/static/db/jave/3d/3d_diagonal.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="158.40001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="190.08" height="168.96" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,34 +112,71 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="158.40001"></rect> + <rect class="backdrop" x="0" y="0" width="190.08" height="168.96"></rect> <text x="17.16" y="29.04" >,</text> <line x1="21.12" y1="26.400002" x2="36.960003" y2="26.400002" class="solid"></line> <text x="38.280003" y="29.04" >,</text> <text x="11.88" y="39.600002" >'</text> <text x="27.720001" y="39.600002" >.'</text> + <text x="91.08" y="39.600002" >,</text> + <line x1="95.04" y1="36.960003" x2="110.880005" y2="36.960003" class="solid"></line> + <text x="112.200005" y="39.600002" >,</text> <line x1="10.56" y1="42.24" x2="5.28" y2="52.800003" class="solid"></line> <text x="22.44" y="50.160004" >;</text> <text x="48.84" y="50.160004" >'</text> + <text x="106.920006" y="50.160004" >'</text> + <line x1="113.520004" y1="42.24" x2="113.520004" y2="87.12" class="broken"></line> <line x1="2.64" y1="52.800003" x2="2.64" y2="97.68" class="broken"></line> <text x="33" y="81.840004" >'</text> <text x="43.56" y="81.840004" >;.</text> <text x="69.96" y="81.840004" >:</text> + <text x="117.48" y="81.840004" >,</text> <text x="33" y="92.4" >;</text> <line x1="42.24" y1="84.48" x2="36.960003" y2="95.04" class="solid"></line> <line x1="73.920006" y1="84.48" x2="79.200005" y2="95.04" class="solid"></line> + <line x1="102.96001" y1="84.48" x2="102.96001" y2="137.28" class="broken"></line> + <line x1="168.96" y1="84.48" x2="163.68001" y2="95.04" class="solid"></line> + <text x="175.56001" y="92.4" >'</text> <text x="33" y="102.96001" >|</text> - <text x="69.96" y="102.96001" >,'</text> + <text x="69.96" y="102.96001" >,'|</text> + <text x="133.32" y="102.96001" >.</text> + <text x="159.72" y="102.96001" >'</text> + <line x1="174.24" y1="95.04" x2="168.96" y2="105.600006" class="solid"></line> <line x1="34.32" y1="105.600006" x2="34.32" y2="108.240005" class="solid"></line> + <line x1="81.840004" y1="105.600006" x2="81.840004" y2="108.240005" class="solid"></line> + <text x="112.200005" y="113.520004" >|:</text> + <text x="133.32" y="113.520004" >'</text> + <text x="154.44" y="113.520004" >;</text> + <text x="165" y="113.520004" >:</text> <text x="33" y="124.08" >:</text> + <line x1="81.840004" y1="116.16" x2="81.840004" y2="137.28" class="solid"></line> + <line x1="113.520004" y1="116.16" x2="113.520004" y2="118.8" class="solid"></line> + <line x1="121.44" y1="116.16" x2="116.16" y2="126.72" class="solid"></line> + <text x="133.32" y="124.08" >'</text> + <line x1="155.76001" y1="116.16" x2="155.76001" y2="137.28" class="broken"></line> + <line x1="166.32" y1="116.16" x2="166.32" y2="118.8" class="solid"></line> + <text x="170.28001" y="124.08" >.'</text> <text x="27.720001" y="134.64" >,</text> <line x1="34.32" y1="126.72" x2="34.32" y2="129.36" class="solid"></line> <text x="22.44" y="145.20001" >'</text> + <line x1="84.48" y1="137.28" x2="79.200005" y2="147.84001" class="solid"></line> + <line x1="105.600006" y1="137.28" x2="110.880005" y2="147.84001" class="solid"></line> + <line x1="158.40001" y1="137.28" x2="163.68001" y2="147.84001" class="solid"></line> + <text x="80.520004" y="155.76001" >`</text> + <line x1="84.48" y1="153.12001" x2="89.76" y2="153.12001" class="solid"></line> + <text x="91.08" y="155.76001" >'</text> <g> <line x1="42.24" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> <path d="M 47.52,42.24 A 21.12,21.12 0,0,1 58.08,52.800003" class="nofill"></path> <line x1="58.08" y1="52.800003" x2="68.64" y2="73.920006" class="solid"></line> </g> + <g> + <path d="M 84.48,47.52 A 2.64,2.64 0,0,0 81.840004,50.160004" class="nofill"></path> + <line x1="81.840004" y1="50.160004" x2="81.840004" y2="95.04" class="broken"></line> + <line x1="84.48" y1="47.52" x2="100.32001" y2="47.52" class="solid"></line> + <path d="M 100.32001,47.52 A 2.64,2.64 0,0,1 102.96001,50.160004" class="nofill"></path> + <line x1="102.96001" y1="50.160004" x2="102.96001" y2="73.920006" class="broken"></line> + </g> <g> <line x1="18.480001" y1="52.800003" x2="18.480001" y2="139.92" class="broken"></line> <line x1="2.64" y1="105.600006" x2="2.64" y2="139.92" class="solid"></line> @@ -134,6 +188,21 @@ <line x1="42.24" y1="63.36" x2="36.960003" y2="73.920006" class="solid"></line> <line x1="42.24" y1="63.36" x2="47.52" y2="73.920006" class="solid"></line> </g> + <g> + <path d="M 153.12001,68.64 A 5.28,5.28 0,0,0 149.16,71.28001" class="nofill"></path> + <line x1="149.16" y1="71.28001" x2="137.28" y2="95.04" class="solid"></line> + <line x1="153.12001" y1="68.64" x2="168.96" y2="68.64" class="solid"></line> + <path d="M 168.96,68.64 A 5.28,5.28 0,0,1 172.92001,71.28001" class="nofill"></path> + <line x1="172.92001" y1="71.28001" x2="179.52" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="79.200005" x2="126.72" y2="79.200005" class="solid"></line> + <path d="M 126.72,79.200005 A 2.64,2.64 0,0,1 129.36,81.840004" class="nofill"></path> + <line x1="129.36" y1="81.840004" x2="129.36" y2="132" class="broken"></line> + <line x1="129.36" y1="132" x2="120.12" y2="150.48001" class="solid"></line> + <line x1="95.04" y1="153.12001" x2="116.16" y2="153.12001" class="solid"></line> + <path d="M 120.12,150.48001 A 5.28,5.28 0,0,1 116.16,153.12001" class="nofill"></path> + </g> <g> <line x1="52.800003" y1="84.48" x2="64.68" y2="108.240005" class="solid"></line> <line x1="42.24" y1="95.04" x2="48.84" y2="108.240005" class="solid"></line> @@ -141,4 +210,20 @@ <line x1="52.800003" y1="110.880005" x2="63.36" y2="110.880005" class="solid"></line> <path d="M 64.68,108.240005 A 1.98,1.98 0,0,1 63.36,110.880005" class="nofill"></path> </g> + <g> + <line x1="121.44" y1="95.04" x2="118.8" y2="100.32001" class="solid"></line> + <line x1="118.8" y1="100.32001" x2="118.8" y2="105.600006" class="solid"></line> + </g> + <g> + <line x1="168.96" y1="116.16" x2="182.16" y2="116.16" class="solid"></line> + <line x1="182.16" y1="116.16" x2="182.16" y2="137.28" class="broken"></line> + </g> + <g> + <line x1="134.64" y1="126.72" x2="134.64" y2="132" class="solid"></line> + <line x1="134.64" y1="132" x2="143.88" y2="150.48001" class="solid"></line> + <path d="M 143.88,150.48001 A 5.28,5.28 0,0,0 147.84001,153.12001" class="nofill"></path> + <line x1="147.84001" y1="153.12001" x2="168.96" y2="153.12001" class="solid"></line> + <line x1="179.52" y1="137.28" x2="172.92001" y2="150.48001" class="solid"></line> + <path d="M 172.92001,150.48001 A 5.28,5.28 0,0,1 168.96,153.12001" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/3d/alpha.svg b/static/db/jave/3d/alpha.svg index 404e5e2e0ba3081e7e7912fe490e6616fa30e446..df0a87c361efbb147332274e7f161fd715ef4ada 100644 --- a/static/db/jave/3d/alpha.svg +++ b/static/db/jave/3d/alpha.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="137.28" height="232.32" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="401.28003" height="232.32" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,16 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="137.28" height="232.32"></rect> + <rect class="backdrop" x="0" y="0" width="401.28003" height="232.32"></rect> + <line x1="234.96" y1="126.72" x2="261.36002" y2="126.72" class="solid"></line> + <line x1="179.52" y1="216.48001" x2="190.08" y2="216.48001" class="broken"></line> <g> <line x1="52.800003" y1="10.56" x2="79.200005" y2="10.56" class="solid"></line> <line x1="52.800003" y1="10.56" x2="50.160004" y2="15.84" class="solid"></line> <line x1="50.160004" y1="15.84" x2="50.160004" y2="52.800003" class="broken"></line> <line x1="52.800003" y1="10.56" x2="97.68" y2="100.32001" class="solid"></line> <line x1="55.440002" y1="15.84" x2="55.440002" y2="52.800003" class="broken"></line> - <line x1="79.200005" y1="10.56" x2="121.44" y2="95.04" class="solid"></line> + <line x1="79.200005" y1="10.56" x2="163.68001" y2="179.52" class="solid"></line> <line x1="60.72" y1="26.400002" x2="60.72" y2="63.36" class="broken"></line> <line x1="66" y1="36.960003" x2="66" y2="73.920006" class="broken"></line> <line x1="71.28001" y1="47.52" x2="71.28001" y2="84.48" class="broken"></line> @@ -112,28 +131,113 @@ <line x1="92.4" y1="89.76" x2="92.4" y2="137.28" class="broken"></line> <line x1="95.04" y1="95.04" x2="105.600006" y2="116.16" class="solid"></line> <line x1="97.68" y1="100.32001" x2="97.68" y2="126.72" class="broken"></line> - <line x1="121.44" y1="95.04" x2="132" y2="116.16" class="solid"></line> <line x1="105.600006" y1="116.16" x2="132" y2="116.16" class="solid"></line> + <line x1="137.28" y1="105.600006" x2="79.200005" y2="221.76001" class="solid"></line> <line x1="105.600006" y1="116.16" x2="63.36" y2="200.64001" class="solid"></line> - <line x1="132" y1="116.16" x2="89.76" y2="200.64001" class="solid"></line> - <line x1="89.76" y1="200.64001" x2="79.200005" y2="221.76001" class="solid"></line> + <line x1="163.68001" y1="179.52" x2="179.52" y2="211.20001" class="solid"></line> <line x1="47.52" y1="190.08" x2="42.24" y2="200.64001" class="solid"></line> <line x1="42.24" y1="200.64001" x2="52.800003" y2="221.76001" class="solid"></line> <line x1="63.36" y1="200.64001" x2="52.800003" y2="221.76001" class="solid"></line> <line x1="52.800003" y1="221.76001" x2="79.200005" y2="221.76001" class="solid"></line> </g> + <g> + <line x1="184.8" y1="10.56" x2="211.20001" y2="10.56" class="solid"></line> + <line x1="184.8" y1="10.56" x2="182.16" y2="15.84" class="solid"></line> + <line x1="182.16" y1="15.84" x2="182.16" y2="52.800003" class="broken"></line> + <line x1="184.8" y1="10.56" x2="229.68001" y2="100.32001" class="solid"></line> + <line x1="187.44" y1="15.84" x2="187.44" y2="52.800003" class="broken"></line> + <line x1="211.20001" y1="10.56" x2="253.44" y2="95.04" class="solid"></line> + <line x1="192.72" y1="26.400002" x2="192.72" y2="63.36" class="broken"></line> + <line x1="198.00002" y1="36.960003" x2="198.00002" y2="73.920006" class="broken"></line> + <line x1="203.28001" y1="47.52" x2="203.28001" y2="84.48" class="broken"></line> + <line x1="208.56001" y1="58.08" x2="208.56001" y2="95.04" class="broken"></line> + <line x1="213.84001" y1="68.64" x2="213.84001" y2="105.600006" class="broken"></line> + <line x1="219.12001" y1="79.200005" x2="219.12001" y2="147.84001" class="broken"></line> + <line x1="224.40001" y1="89.76" x2="224.40001" y2="137.28" class="broken"></line> + <line x1="227.04001" y1="95.04" x2="232.32" y2="105.600006" class="solid"></line> + <line x1="229.68001" y1="100.32001" x2="229.68001" y2="126.72" class="broken"></line> + <line x1="234.96" y1="105.600006" x2="258.72" y2="105.600006" class="solid"></line> + <line x1="253.44" y1="95.04" x2="258.72" y2="105.600006" class="solid"></line> + </g> + <g> + <line x1="316.80002" y1="10.56" x2="343.2" y2="10.56" class="solid"></line> + <line x1="316.80002" y1="10.56" x2="314.16" y2="15.84" class="solid"></line> + <line x1="314.16" y1="15.84" x2="314.16" y2="52.800003" class="broken"></line> + <line x1="316.80002" y1="10.56" x2="361.68002" y2="100.32001" class="solid"></line> + <line x1="319.44" y1="15.84" x2="319.44" y2="52.800003" class="broken"></line> + <line x1="343.2" y1="10.56" x2="385.44" y2="95.04" class="solid"></line> + <line x1="324.72" y1="26.400002" x2="324.72" y2="63.36" class="broken"></line> + <line x1="330" y1="36.960003" x2="330" y2="73.920006" class="broken"></line> + <line x1="335.28" y1="47.52" x2="335.28" y2="84.48" class="broken"></line> + <line x1="340.56003" y1="58.08" x2="340.56003" y2="95.04" class="broken"></line> + <line x1="345.84003" y1="68.64" x2="345.84003" y2="105.600006" class="broken"></line> + <line x1="351.12003" y1="79.200005" x2="351.12003" y2="116.16" class="broken"></line> + <line x1="356.40002" y1="89.76" x2="356.40002" y2="126.72" class="broken"></line> + <line x1="359.04" y1="95.04" x2="369.6" y2="116.16" class="solid"></line> + <line x1="361.68002" y1="100.32001" x2="361.68002" y2="126.72" class="broken"></line> + <line x1="385.44" y1="95.04" x2="396.00003" y2="116.16" class="solid"></line> + <line x1="369.6" y1="116.16" x2="396.00003" y2="116.16" class="solid"></line> + <line x1="396.00003" y1="116.16" x2="385.44" y2="137.28" class="solid"></line> + <line x1="316.80002" y1="52.800003" x2="285.12003" y2="116.16" class="solid"></line> + <line x1="316.80002" y1="52.800003" x2="359.04" y2="137.28" class="solid"></line> + <line x1="369.6" y1="116.16" x2="359.04" y2="137.28" class="solid"></line> + <line x1="359.04" y1="137.28" x2="385.44" y2="137.28" class="solid"></line> + <line x1="327.36002" y1="84.48" x2="311.52002" y2="116.16" class="solid"></line> + <line x1="285.12003" y1="116.16" x2="311.52002" y2="116.16" class="solid"></line> + <line x1="285.12003" y1="116.16" x2="327.36002" y2="200.64001" class="solid"></line> + <line x1="287.76" y1="121.44" x2="287.76" y2="158.40001" class="broken"></line> + <line x1="311.52002" y1="116.16" x2="353.76" y2="200.64001" class="solid"></line> + <line x1="293.04" y1="132" x2="293.04" y2="168.96" class="broken"></line> + <line x1="298.32" y1="142.56001" x2="298.32" y2="179.52" class="broken"></line> + <line x1="303.6" y1="153.12001" x2="303.6" y2="190.08" class="broken"></line> + <line x1="308.88" y1="163.68001" x2="308.88" y2="200.64001" class="broken"></line> + <line x1="314.16" y1="174.24" x2="314.16" y2="211.20001" class="broken"></line> + <line x1="319.44" y1="184.8" x2="319.44" y2="211.20001" class="broken"></line> + <line x1="327.36002" y1="200.64001" x2="353.76" y2="200.64001" class="solid"></line> + <line x1="353.76" y1="200.64001" x2="343.2" y2="221.76001" class="solid"></line> + <line x1="261.36002" y1="105.600006" x2="261.36002" y2="110.880005" class="solid"></line> + <line x1="261.36002" y1="110.880005" x2="306.24002" y2="200.64001" class="solid"></line> + <line x1="269.28" y1="105.600006" x2="264" y2="116.16" class="solid"></line> + <line x1="306.24002" y1="200.64001" x2="316.80002" y2="221.76001" class="solid"></line> + <line x1="327.36002" y1="200.64001" x2="316.80002" y2="221.76001" class="solid"></line> + <line x1="316.80002" y1="221.76001" x2="343.2" y2="221.76001" class="solid"></line> + </g> <g> <line x1="47.52" y1="21.12" x2="44.88" y2="26.400002" class="solid"></line> <line x1="44.88" y1="26.400002" x2="44.88" y2="63.36" class="broken"></line> </g> + <g> + <line x1="179.52" y1="21.12" x2="176.88" y2="26.400002" class="solid"></line> + <line x1="176.88" y1="26.400002" x2="176.88" y2="63.36" class="broken"></line> + </g> + <g> + <line x1="311.52002" y1="21.12" x2="308.88" y2="26.400002" class="solid"></line> + <line x1="308.88" y1="26.400002" x2="308.88" y2="63.36" class="broken"></line> + </g> <g> <line x1="42.24" y1="31.68" x2="39.600002" y2="36.960003" class="solid"></line> <line x1="39.600002" y1="36.960003" x2="39.600002" y2="105.600006" class="broken"></line> </g> + <g> + <line x1="174.24" y1="31.68" x2="171.6" y2="36.960003" class="solid"></line> + <line x1="171.6" y1="36.960003" x2="171.6" y2="105.600006" class="broken"></line> + </g> + <g> + <line x1="306.24002" y1="31.68" x2="303.6" y2="36.960003" class="solid"></line> + <line x1="303.6" y1="36.960003" x2="303.6" y2="73.920006" class="broken"></line> + </g> <g> <line x1="36.960003" y1="42.24" x2="34.32" y2="47.52" class="solid"></line> <line x1="34.32" y1="47.52" x2="34.32" y2="95.04" class="broken"></line> </g> + <g> + <line x1="168.96" y1="42.24" x2="166.32" y2="47.52" class="solid"></line> + <line x1="166.32" y1="47.52" x2="166.32" y2="95.04" class="broken"></line> + </g> + <g> + <line x1="300.96002" y1="42.24" x2="298.32" y2="47.52" class="solid"></line> + <line x1="298.32" y1="47.52" x2="298.32" y2="84.48" class="broken"></line> + </g> <g> <line x1="31.68" y1="52.800003" x2="29.04" y2="58.08" class="solid"></line> <line x1="29.04" y1="58.08" x2="29.04" y2="95.04" class="broken"></line> @@ -152,18 +256,64 @@ <line x1="81.840004" y1="121.44" x2="81.840004" y2="158.40001" class="broken"></line> <line x1="71.28001" y1="132" x2="71.28001" y2="179.52" class="broken"></line> </g> + <g> + <line x1="163.68001" y1="52.800003" x2="161.04001" y2="58.08" class="solid"></line> + <line x1="161.04001" y1="58.08" x2="161.04001" y2="95.04" class="broken"></line> + </g> + <g> + <line x1="184.8" y1="52.800003" x2="174.24" y2="73.920006" class="solid"></line> + <line x1="184.8" y1="52.800003" x2="216.48001" y2="116.16" class="solid"></line> + <line x1="174.24" y1="73.920006" x2="195.36" y2="73.920006" class="solid"></line> + <line x1="174.24" y1="73.920006" x2="205.92001" y2="137.28" class="solid"></line> + <line x1="176.88" y1="79.200005" x2="176.88" y2="116.16" class="broken"></line> + <line x1="182.16" y1="89.76" x2="182.16" y2="126.72" class="broken"></line> + <line x1="187.44" y1="100.32001" x2="187.44" y2="137.28" class="broken"></line> + <line x1="192.72" y1="110.880005" x2="192.72" y2="147.84001" class="broken"></line> + <line x1="198.00002" y1="121.44" x2="198.00002" y2="190.08" class="broken"></line> + <line x1="216.48001" y1="116.16" x2="213.84001" y2="121.44" class="solid"></line> + <line x1="213.84001" y1="121.44" x2="213.84001" y2="158.40001" class="broken"></line> + <line x1="203.28001" y1="132" x2="203.28001" y2="179.52" class="broken"></line> + </g> + <g> + <line x1="295.68002" y1="52.800003" x2="293.04" y2="58.08" class="solid"></line> + <line x1="293.04" y1="58.08" x2="293.04" y2="95.04" class="broken"></line> + </g> <g> <line x1="26.400002" y1="63.36" x2="23.76" y2="68.64" class="solid"></line> <line x1="23.76" y1="68.64" x2="23.76" y2="105.600006" class="broken"></line> </g> + <g> + <line x1="158.40001" y1="63.36" x2="155.76001" y2="68.64" class="solid"></line> + <line x1="155.76001" y1="68.64" x2="155.76001" y2="105.600006" class="broken"></line> + </g> + <g> + <line x1="290.40002" y1="63.36" x2="287.76" y2="68.64" class="solid"></line> + <line x1="287.76" y1="68.64" x2="287.76" y2="105.600006" class="broken"></line> + </g> <g> <line x1="21.12" y1="73.920006" x2="18.480001" y2="79.200005" class="solid"></line> <line x1="18.480001" y1="79.200005" x2="18.480001" y2="116.16" class="broken"></line> </g> + <g> + <line x1="153.12001" y1="73.920006" x2="150.48001" y2="79.200005" class="solid"></line> + <line x1="150.48001" y1="79.200005" x2="150.48001" y2="147.84001" class="broken"></line> + </g> + <g> + <line x1="285.12003" y1="73.920006" x2="282.48" y2="79.200005" class="solid"></line> + <line x1="282.48" y1="79.200005" x2="282.48" y2="147.84001" class="broken"></line> + </g> <g> <line x1="15.84" y1="84.48" x2="13.200001" y2="89.76" class="solid"></line> <line x1="13.200001" y1="89.76" x2="13.200001" y2="126.72" class="broken"></line> </g> + <g> + <line x1="147.84001" y1="84.48" x2="145.20001" y2="89.76" class="solid"></line> + <line x1="145.20001" y1="89.76" x2="145.20001" y2="137.28" class="broken"></line> + </g> + <g> + <line x1="279.84" y1="84.48" x2="277.2" y2="89.76" class="solid"></line> + <line x1="277.2" y1="89.76" x2="277.2" y2="137.28" class="broken"></line> + </g> <g> <line x1="10.56" y1="95.04" x2="7.92" y2="100.32001" class="solid"></line> <line x1="7.92" y1="100.32001" x2="7.92" y2="126.72" class="broken"></line> @@ -178,14 +328,51 @@ <line x1="10.56" y1="137.28" x2="36.960003" y2="137.28" class="solid"></line> <line x1="42.24" y1="126.72" x2="36.960003" y2="137.28" class="solid"></line> </g> + <g> + <line x1="142.56001" y1="95.04" x2="139.92" y2="100.32001" class="solid"></line> + <line x1="139.92" y1="100.32001" x2="139.92" y2="126.72" class="broken"></line> + </g> + <g> + <line x1="163.68001" y1="95.04" x2="153.12001" y2="116.16" class="solid"></line> + <line x1="163.68001" y1="95.04" x2="195.36" y2="158.40001" class="solid"></line> + <line x1="153.12001" y1="116.16" x2="174.24" y2="116.16" class="solid"></line> + <line x1="153.12001" y1="116.16" x2="184.8" y2="179.52" class="solid"></line> + <line x1="155.76001" y1="121.44" x2="155.76001" y2="158.40001" class="broken"></line> + <line x1="161.04001" y1="132" x2="161.04001" y2="168.96" class="broken"></line> + <line x1="166.32" y1="142.56001" x2="166.32" y2="179.52" class="broken"></line> + <line x1="171.6" y1="153.12001" x2="171.6" y2="190.08" class="broken"></line> + <line x1="176.88" y1="163.68001" x2="176.88" y2="200.64001" class="broken"></line> + <line x1="195.36" y1="158.40001" x2="192.72" y2="163.68001" class="solid"></line> + <line x1="192.72" y1="163.68001" x2="192.72" y2="200.64001" class="broken"></line> + <line x1="182.16" y1="174.24" x2="182.16" y2="211.20001" class="broken"></line> + </g> + <g> + <line x1="274.56" y1="95.04" x2="271.92" y2="100.32001" class="solid"></line> + <line x1="271.92" y1="100.32001" x2="271.92" y2="126.72" class="broken"></line> + </g> + <g> + <line x1="234.96" y1="116.16" x2="234.96" y2="121.44" class="solid"></line> + <line x1="234.96" y1="121.44" x2="190.08" y2="211.20001" class="solid"></line> + <line x1="261.36002" y1="116.16" x2="261.36002" y2="121.44" class="solid"></line> + <line x1="261.36002" y1="121.44" x2="216.48001" y2="211.20001" class="solid"></line> + <line x1="190.08" y1="211.20001" x2="216.48001" y2="211.20001" class="solid"></line> + </g> <g> <line x1="79.200005" y1="126.72" x2="76.560005" y2="132" class="solid"></line> <line x1="76.560005" y1="132" x2="76.560005" y2="168.96" class="broken"></line> </g> + <g> + <line x1="211.20001" y1="126.72" x2="208.56001" y2="132" class="solid"></line> + <line x1="208.56001" y1="132" x2="208.56001" y2="168.96" class="broken"></line> + </g> <g> <line x1="58.08" y1="168.96" x2="55.440002" y2="174.24" class="solid"></line> <line x1="55.440002" y1="174.24" x2="55.440002" y2="211.20001" class="broken"></line> </g> + <g> + <line x1="190.08" y1="168.96" x2="187.44" y2="174.24" class="solid"></line> + <line x1="187.44" y1="174.24" x2="187.44" y2="211.20001" class="broken"></line> + </g> <g> <line x1="52.800003" y1="179.52" x2="50.160004" y2="184.8" class="solid"></line> <line x1="50.160004" y1="184.8" x2="50.160004" y2="211.20001" class="broken"></line> diff --git a/static/db/jave/3d/blocks.svg b/static/db/jave/3d/blocks.svg index 613b241985f0eb7c7f06d32272f98a7efdd17e80..f220e4e08ffb41a6e66ddf0dcb8d698b68492d1f 100644 --- a/static/db/jave/3d/blocks.svg +++ b/static/db/jave/3d/blocks.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="322.08002" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,24 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="110.880005" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="322.08002" height="126.72"></rect> <rect x="2.64" y="5.28" width="100.32001" height="105.600006" class="solid nofill" rx="5.28"></rect> <rect x="13.200001" y="15.84" width="79.2" height="84.48001" class="solid nofill" rx="2.64"></rect> + <rect x="108.240005" y="5.28" width="100.32001" height="105.600006" class="solid nofill" rx="5.28"></rect> + <rect x="118.8" y="15.84" width="79.20001" height="84.48001" class="solid nofill" rx="2.64"></rect> + <text x="175.56001" y="50.160004" >|</text> + <text x="170.28001" y="60.72" >'.</text> + <rect x="213.84001" y="5.28" width="100.31999" height="105.600006" class="solid nofill" rx="5.28"></rect> + <rect x="224.40001" y="15.84" width="79.2" height="84.48001" class="solid nofill" rx="2.64"></rect> + <text x="249.48001" y="39.600002" >'</text> + <line x1="250.8" y1="50.160004" x2="250.8" y2="63.36" class="solid"></line> + <text x="254.76001" y="50.160004" >'</text> + <text x="249.48001" y="71.28001" >`.</text> + <line x1="258.72" y1="73.920006" x2="274.56" y2="73.920006" class="solid"></line> + <text x="275.88" y="71.28001" >.'</text> + <line x1="285.12003" y1="63.36" x2="290.40002" y2="73.920006" class="solid"></line> + <text x="249.48001" y="81.840004" >.</text> + <text x="281.16" y="81.840004" >.'</text> <g> <line x1="47.52" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> <line x1="47.52" y1="31.68" x2="26.400002" y2="73.920006" class="solid"></line> @@ -120,4 +152,43 @@ <line x1="42.24" y1="63.36" x2="36.960003" y2="73.920006" class="solid"></line> <line x1="63.36" y1="63.36" x2="68.64" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="134.64" y1="31.68" x2="168.96" y2="31.68" class="solid"></line> + <line x1="134.64" y1="31.68" x2="134.64" y2="42.24" class="solid"></line> + <line x1="134.64" y1="42.24" x2="145.20001" y2="42.24" class="solid"></line> + <line x1="168.96" y1="31.68" x2="174.24" y2="42.24" class="solid"></line> + <line x1="145.20001" y1="42.24" x2="145.20001" y2="73.920006" class="solid"></line> + <line x1="134.64" y1="73.920006" x2="145.20001" y2="73.920006" class="solid"></line> + <line x1="134.64" y1="73.920006" x2="134.64" y2="84.48" class="solid"></line> + <line x1="182.16" y1="63.36" x2="182.16" y2="68.64" class="solid"></line> + <line x1="182.16" y1="68.64" x2="174.24" y2="84.48" class="solid"></line> + <line x1="134.64" y1="84.48" x2="174.24" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="155.76001" y1="42.24" x2="163.68001" y2="42.24" class="solid"></line> + <line x1="155.76001" y1="42.24" x2="155.76001" y2="52.800003" class="solid"></line> + <line x1="155.76001" y1="52.800003" x2="163.68001" y2="52.800003" class="solid"></line> + <path d="M 163.68001,42.24 A 10.56,10.56 0,0,1 163.68001,52.800003" class="nofill"></path> + </g> + <g> + <line x1="155.76001" y1="63.36" x2="168.96" y2="63.36" class="solid"></line> + <line x1="155.76001" y1="63.36" x2="155.76001" y2="73.920006" class="solid"></line> + <line x1="155.76001" y1="73.920006" x2="168.96" y2="73.920006" class="solid"></line> + <path d="M 168.96,63.36 A 10.56,10.56 0,0,1 168.96,73.920006" class="nofill"></path> + </g> + <g> + <line x1="253.44" y1="31.68" x2="287.76" y2="31.68" class="solid"></line> + <path d="M 253.44,31.68 A 21.12,21.12 0,0,0 242.88,42.24" class="nofill"></path> + <line x1="287.76" y1="31.68" x2="287.76" y2="52.800003" class="solid"></line> + <line x1="242.88" y1="42.24" x2="240.24" y2="47.52" class="solid"></line> + <line x1="240.24" y1="47.52" x2="240.24" y2="63.36" class="solid"></line> + <line x1="258.72" y1="42.24" x2="274.56" y2="42.24" class="solid"></line> + <line x1="274.56" y1="42.24" x2="279.84" y2="52.800003" class="solid"></line> + <line x1="279.84" y1="52.800003" x2="287.76" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="237.6" y1="63.36" x2="242.88" y2="73.920006" class="solid"></line> + <path d="M 242.88,73.920006 A 21.12,21.12 0,0,0 253.44,84.48" class="nofill"></path> + <line x1="253.44" y1="84.48" x2="279.84" y2="84.48" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/3d/chiseled.svg b/static/db/jave/3d/chiseled.svg index 8dfdb7c8226eee784ade8caa77d86db32ec00e0e..fdbc66e6e31381acba3b509c74ba269ffde06a6a 100644 --- a/static/db/jave/3d/chiseled.svg +++ b/static/db/jave/3d/chiseled.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="205.92001" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,26 +112,76 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="73.920006" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="205.92001" height="105.600006"></rect> <text x="17.16" y="7.92" >,</text> + <text x="154.44" y="7.92" >,</text> <text x="6.6000004" y="18.480001" >.</text> <line x1="10.56" y1="15.84" x2="21.12" y2="15.84" class="solid"></line> <text x="22.44" y="18.480001" >.'</text> + <text x="96.36" y="18.480001" >.</text> + <text x="143.88" y="18.480001" >'</text> + <text x="159.72" y="18.480001" >'</text> + <line x1="168.96" y1="15.84" x2="174.24" y2="15.84" class="solid"></line> <line x1="10.56" y1="25.080002" x2="21.12" y2="25.080002" class="solid"></line> <line x1="10.56" y1="27.720001" x2="21.12" y2="27.720001" class="solid"></line> + <text x="85.8" y="29.04" >'</text> + <path d="M 105.600006,21.12 A 21.12,21.12 0,0,0 95.04,31.68" class="nofill"></path> + <line x1="137.28" y1="25.080002" x2="147.84001" y2="25.080002" class="solid"></line> + <line x1="137.28" y1="27.720001" x2="147.84001" y2="27.720001" class="solid"></line> + <text x="165" y="29.04" >,</text> + <text x="180.84001" y="29.04" >,</text> + <line x1="184.8" y1="26.400002" x2="190.08" y2="26.400002" class="solid"></line> + <text x="191.40001" y="29.04" >'</text> <line x1="10.56" y1="35.640003" x2="21.12" y2="35.640003" class="solid"></line> <line x1="10.56" y1="38.280003" x2="21.12" y2="38.280003" class="solid"></line> + <line x1="79.200005" y1="35.640003" x2="89.76" y2="35.640003" class="solid"></line> + <line x1="79.200005" y1="38.280003" x2="89.76" y2="38.280003" class="solid"></line> + <text x="106.920006" y="39.600002" >'</text> + <line x1="110.880005" y1="35.640003" x2="116.16" y2="35.640003" class="solid"></line> + <line x1="110.880005" y1="38.280003" x2="116.16" y2="38.280003" class="solid"></line> + <text x="117.48" y="39.600002" >'</text> + <text x="133.32" y="39.600002" >|</text> + <line x1="137.28" y1="35.640003" x2="147.84001" y2="35.640003" class="solid"></line> + <line x1="137.28" y1="38.280003" x2="147.84001" y2="38.280003" class="solid"></line> + <text x="191.40001" y="39.600002" >.</text> <line x1="10.56" y1="46.2" x2="21.12" y2="46.2" class="solid"></line> <line x1="10.56" y1="48.84" x2="21.12" y2="48.84" class="solid"></line> <text x="27.720001" y="50.160004" >,</text> <line x1="47.52" y1="47.52" x2="52.800003" y2="47.52" class="solid"></line> + <line x1="79.200005" y1="46.2" x2="89.76" y2="46.2" class="solid"></line> + <line x1="79.200005" y1="48.84" x2="89.76" y2="48.84" class="solid"></line> + <text x="101.64001" y="50.160004" >,</text> + <text x="122.76" y="50.160004" >'</text> + <line x1="134.64" y1="42.24" x2="134.64" y2="63.36" class="solid"></line> + <line x1="137.28" y1="46.2" x2="147.84001" y2="46.2" class="solid"></line> + <line x1="137.28" y1="48.84" x2="147.84001" y2="48.84" class="solid"></line> <line x1="10.56" y1="56.760002" x2="21.12" y2="56.760002" class="solid"></line> <line x1="10.56" y1="59.4" x2="21.12" y2="59.4" class="solid"></line> <line x1="31.68" y1="58.08" x2="36.960003" y2="58.08" class="solid"></line> <text x="54.120003" y="60.72" >,</text> + <line x1="79.200005" y1="56.760002" x2="89.76" y2="56.760002" class="solid"></line> + <line x1="79.200005" y1="59.4" x2="89.76" y2="59.4" class="solid"></line> + <text x="106.920006" y="60.72" >.</text> + <line x1="110.880005" y1="56.760002" x2="116.16" y2="56.760002" class="solid"></line> + <line x1="110.880005" y1="59.4" x2="116.16" y2="59.4" class="solid"></line> + <text x="117.48" y="60.72" >.</text> + <line x1="137.28" y1="56.760002" x2="147.84001" y2="56.760002" class="solid"></line> + <line x1="137.28" y1="59.4" x2="147.84001" y2="59.4" class="solid"></line> + <line x1="168.96" y1="63.36" x2="174.24" y2="63.36" class="solid"></line> + <text x="186.12001" y="60.72" >,</text> <line x1="5.28" y1="67.32" x2="15.84" y2="67.32" class="solid"></line> <line x1="5.28" y1="69.96" x2="15.84" y2="69.96" class="solid"></line> <line x1="52.800003" y1="68.64" x2="58.08" y2="68.64" class="solid"></line> + <line x1="79.200005" y1="67.32" x2="89.76" y2="67.32" class="solid"></line> + <line x1="79.200005" y1="69.96" x2="89.76" y2="69.96" class="solid"></line> + <text x="106.920006" y="71.28001" >'</text> + <line x1="110.880005" y1="67.32" x2="116.16" y2="67.32" class="solid"></line> + <line x1="110.880005" y1="69.96" x2="116.16" y2="69.96" class="solid"></line> + <text x="117.48" y="71.28001" >'</text> + <text x="128.04001" y="71.28001" >,</text> + <line x1="137.28" y1="67.32" x2="147.84001" y2="67.32" class="solid"></line> + <line x1="137.28" y1="69.96" x2="147.84001" y2="69.96" class="solid"></line> + <text x="154.44" y="71.28001" >.</text> <line x1="5.28" y1="77.880005" x2="15.84" y2="77.880005" class="solid"></line> <line x1="5.28" y1="80.520004" x2="15.84" y2="80.520004" class="solid"></line> <line x1="26.400002" y1="84.48" x2="31.68" y2="84.48" class="solid"></line> @@ -124,12 +191,57 @@ <text x="54.120003" y="81.840004" >.</text> <line x1="58.08" y1="79.200005" x2="63.36" y2="79.200005" class="solid"></line> <text x="64.68" y="81.840004" >'</text> + <line x1="73.920006" y1="77.880005" x2="84.48" y2="77.880005" class="solid"></line> + <line x1="73.920006" y1="80.520004" x2="84.48" y2="80.520004" class="solid"></line> + <text x="85.8" y="81.840004" >|</text> + <line x1="105.600006" y1="79.200005" x2="110.880005" y2="79.200005" class="solid"></line> + <line x1="132" y1="73.920006" x2="126.72" y2="84.48" class="solid"></line> + <text x="149.16" y="81.840004" >.</text> + <text x="159.72" y="81.840004" >.</text> <text x="22.44" y="92.4" >`</text> + <text x="91.08" y="92.4" >`.</text> + <line x1="100.32001" y1="95.04" x2="116.16" y2="95.04" class="solid"></line> + <text x="117.48" y="92.4" >,'</text> <g> <line x1="21.12" y1="5.28" x2="36.960003" y2="5.28" class="solid"></line> <path d="M 36.960003,5.28 A 5.28,5.28 0,0,1 40.920002,7.92" class="nofill"></path> <line x1="40.920002" y1="7.92" x2="52.800003" y2="31.68" class="solid"></line> </g> + <g> + <line x1="147.84001" y1="10.56" x2="153.12001" y2="10.56" class="solid"></line> + <path d="M 147.84001,10.56 A 21.12,21.12 0,0,0 137.28,21.12" class="nofill"></path> + <line x1="137.28" y1="21.12" x2="134.64" y2="26.400002" class="solid"></line> + <line x1="134.64" y1="26.400002" x2="134.64" y2="31.68" class="solid"></line> + </g> + <g> + <path d="M 163.68001,5.28 A 2.64,2.64 0,0,0 161.04001,7.92" class="nofill"></path> + <line x1="161.04001" y1="7.92" x2="161.04001" y2="10.56" class="solid"></line> + <line x1="163.68001" y1="5.28" x2="184.8" y2="5.28" class="solid"></line> + <path d="M 184.8,5.28 A 5.28,5.28 0,0,1 188.76001,7.92" class="nofill"></path> + <line x1="188.76001" y1="7.92" x2="195.36" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="89.76" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <path d="M 89.76,21.12 A 21.12,21.12 0,0,0 79.200005,31.68" class="nofill"></path> + <line x1="79.200005" y1="31.68" x2="76.560005" y2="36.960003" class="solid"></line> + <line x1="76.560005" y1="36.960003" x2="76.560005" y2="63.36" class="solid"></line> + </g> + <g> + <path d="M 105.600006,15.84 A 2.64,2.64 0,0,0 102.96001,18.480001" class="nofill"></path> + <line x1="102.96001" y1="18.480001" x2="102.96001" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="15.84" x2="121.44" y2="15.84" class="solid"></line> + <path d="M 121.44,15.84 A 5.28,5.28 0,0,1 125.4,18.480001" class="nofill"></path> + <line x1="125.4" y1="18.480001" x2="132" y2="31.68" class="solid"></line> + <line x1="97.68" y1="15.84" x2="108.240005" y2="26.400002" class="broken"></line> + <line x1="132" y1="31.68" x2="126.72" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 163.68001,10.56 A 21.12,21.12 0,0,0 153.12001,21.12" class="nofill"></path> + <line x1="153.12001" y1="21.12" x2="150.48001" y2="26.400002" class="solid"></line> + <line x1="150.48001" y1="26.400002" x2="150.48001" y2="63.36" class="solid"></line> + <line x1="150.48001" y1="36.960003" x2="158.40001" y2="36.960003" class="solid"></line> + <line x1="150.48001" y1="52.800003" x2="158.40001" y2="52.800003" class="solid"></line> + </g> <g> <line x1="5.28" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> <line x1="10.56" y1="31.68" x2="5.28" y2="42.24" class="solid"></line> @@ -153,15 +265,64 @@ <line x1="18.480001" y1="68.64" x2="26.400002" y2="68.64" class="solid"></line> <line x1="15.84" y1="73.920006" x2="21.12" y2="84.48" class="solid"></line> </g> + <g> + <line x1="97.68" y1="21.12" x2="97.68" y2="23.76" class="solid"></line> + <path d="M 97.68,23.76 A 10.56,10.56 0,0,1 96.36,29.04" class="nofill"></path> + <line x1="96.36" y1="29.04" x2="92.4" y2="36.960003" class="solid"></line> + <line x1="92.4" y1="36.960003" x2="100.32001" y2="36.960003" class="solid"></line> + <line x1="92.4" y1="36.960003" x2="92.4" y2="63.36" class="solid"></line> + <line x1="92.4" y1="47.52" x2="100.32001" y2="47.52" class="solid"></line> + </g> + <g> + <path d="M 110.880005,26.400002 A 2.64,2.64 0,0,0 108.240005,29.04" class="nofill"></path> + <line x1="108.240005" y1="29.04" x2="108.240005" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="26.400002" x2="116.16" y2="26.400002" class="solid"></line> + <path d="M 116.16,26.400002 A 2.64,2.64 0,0,1 118.8,29.04" class="nofill"></path> + <line x1="118.8" y1="29.04" x2="118.8" y2="31.68" class="solid"></line> + </g> <g> <line x1="55.440002" y1="31.68" x2="55.440002" y2="36.960003" class="solid"></line> <line x1="55.440002" y1="36.960003" x2="60.72" y2="47.52" class="solid"></line> <line x1="60.72" y1="47.52" x2="60.72" y2="58.08" class="solid"></line> - <line x1="60.72" y1="58.08" x2="68.64" y2="73.920006" class="solid"></line> + <line x1="60.72" y1="58.08" x2="71.28001" y2="79.200005" class="solid"></line> + <line x1="79.200005" y1="63.36" x2="71.28001" y2="79.200005" class="solid"></line> + <line x1="71.28001" y1="79.200005" x2="71.28001" y2="87.12" class="solid"></line> + <path d="M 71.28001,87.12 A 2.64,2.64 0,0,0 73.920006,89.76" class="nofill"></path> + <line x1="73.920006" y1="89.76" x2="79.200005" y2="89.76" class="solid"></line> + <line x1="79.200005" y1="89.76" x2="84.48" y2="95.04" class="solid"></line> + <line x1="84.48" y1="95.04" x2="89.76" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="176.88" y1="31.68" x2="176.88" y2="44.88" class="solid"></line> + <path d="M 176.88,44.88 A 2.64,2.64 0,0,0 179.52,47.52" class="nofill"></path> + <line x1="179.52" y1="47.52" x2="187.44" y2="47.52" class="solid"></line> + <path d="M 192.72,42.24 A 5.28,5.28 0,0,1 187.44,47.52" class="nofill"></path> + </g> + <g> + <line x1="195.36" y1="42.24" x2="198.00002" y2="47.52" class="solid"></line> + <line x1="198.00002" y1="47.52" x2="198.00002" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="52.800003" x2="138.6" y2="76.560005" class="solid"></line> + <path d="M 138.6,76.560005 A 5.28,5.28 0,0,0 142.56001,79.200005" class="nofill"></path> + <line x1="142.56001" y1="79.200005" x2="147.84001" y2="79.200005" class="solid"></line> </g> <g> <line x1="42.24" y1="63.36" x2="36.960003" y2="73.920006" class="solid"></line> <line x1="42.24" y1="63.36" x2="52.800003" y2="84.48" class="solid"></line> <line x1="36.960003" y1="73.920006" x2="42.24" y2="84.48" class="solid"></line> </g> + <g> + <line x1="95.04" y1="63.36" x2="89.76" y2="73.920006" class="solid"></line> + <line x1="92.4" y1="68.64" x2="100.32001" y2="68.64" class="solid"></line> + </g> + <g> + <line x1="147.84001" y1="63.36" x2="153.12001" y2="73.920006" class="solid"></line> + <path d="M 153.12001,73.920006 A 21.12,21.12 0,0,0 163.68001,84.48" class="nofill"></path> + <line x1="163.68001" y1="84.48" x2="179.52" y2="84.48" class="solid"></line> + <line x1="184.8" y1="79.200005" x2="179.52" y2="84.48" class="solid"></line> + <line x1="184.8" y1="79.200005" x2="190.08" y2="79.200005" class="solid"></line> + <line x1="200.64001" y1="63.36" x2="194.04001" y2="76.560005" class="solid"></line> + <path d="M 194.04001,76.560005 A 5.28,5.28 0,0,1 190.08,79.200005" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/3d/henry3d.svg b/static/db/jave/3d/henry3d.svg index 2c16c4534164c165ee9ccc5806f3bde7d7114414..f81c29fb4640588cde9bcf1ca793b74959a56aa6 100644 --- a/static/db/jave/3d/henry3d.svg +++ b/static/db/jave/3d/henry3d.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,17 +112,50 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> + <rect x="76.560005" y="31.68" width="15.839996" height="10.560001" class="solid nofill" rx="0"></rect> + <line x1="73.920006" y1="10.56" x2="79.200005" y2="10.56" class="solid"></line> + <text x="69.96" y="18.480001" >FJ</text> + <line x1="79.200005" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="126.72" y1="21.12" x2="147.84001" y2="21.12" class="solid"></line> + <text x="64.68" y="29.04" >J</text> + <text x="96.36" y="29.04" >J</text> + <text x="122.76" y="29.04" >F</text> + <text x="149.16" y="29.04" >J.</text> <line x1="21.12" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="66" y1="31.68" x2="66" y2="42.24" class="solid"></line> + <line x1="102.96001" y1="31.68" x2="102.96001" y2="42.24" class="solid"></line> + <line x1="118.8" y1="31.68" x2="118.8" y2="42.24" class="solid"></line> + <text x="149.16" y="39.600002" >LJ</text> <text x="17.16" y="50.160004" >L</text> <line x1="21.12" y1="52.800003" x2="36.960003" y2="52.800003" class="solid"></line> <text x="38.280003" y="50.160004" >J</text> + <text x="64.68" y="50.160004" >F</text> + <text x="75.240005" y="50.160004" >L</text> + <line x1="79.200005" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <text x="91.08" y="50.160004" >J</text> + <text x="101.64001" y="50.160004" >J</text> + <text x="117.48" y="50.160004" >F</text> + <text x="128.04001" y="50.160004" >L</text> + <line x1="132" y1="52.800003" x2="147.84001" y2="52.800003" class="solid"></line> <text x="1.32" y="60.72" >J</text> <text x="17.16" y="60.72" >L</text> <text x="38.280003" y="60.72" >J</text> - <text x="54.120003" y="60.72" >L</text> + <text x="54.120003" y="60.72" >LJ</text> + <line x1="63.36" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <text x="75.240005" y="60.72" >,</text> + <text x="106.920006" y="60.72" >LJ</text> + <text x="159.72" y="60.72" >F</text> <text x="17.16" y="71.28001" >L</text> <text x="38.280003" y="71.28001" >J</text> + <text x="59.4" y="71.28001" >J</text> + <line x1="63.36" y1="73.920006" x2="73.920006" y2="73.920006" class="solid"></line> + <text x="75.240005" y="71.28001" >,</text> + <line x1="79.200005" y1="73.920006" x2="100.32001" y2="73.920006" class="solid"></line> + <text x="101.64001" y="71.28001" >F</text> + <text x="117.48" y="71.28001" >J</text> + <line x1="121.44" y1="73.920006" x2="153.12001" y2="73.920006" class="solid"></line> + <text x="154.44" y="71.28001" >F</text> <g> <line x1="26.400002" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> <line x1="26.400002" y1="10.56" x2="5.28" y2="52.800003" class="solid"></line> @@ -116,6 +166,18 @@ <line x1="29.04" y1="15.84" x2="36.960003" y2="31.68" class="solid"></line> <line x1="21.12" y1="31.68" x2="36.960003" y2="31.68" class="solid"></line> </g> + <g> + <line x1="129.36" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="129.36" y1="31.68" x2="129.36" y2="42.24" class="solid"></line> + <line x1="129.36" y1="36.960003" x2="147.84001" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="147.84001" y1="47.52" x2="158.40001" y2="47.52" class="solid"></line> + <path d="M 158.40001,47.52 A 1.98,1.98 0,0,1 159.72,50.160004" class="nofill"></path> + <line x1="159.72" y1="50.160004" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="116.16" y1="52.800003" x2="121.44" y2="63.36" class="solid"></line> + <line x1="121.44" y1="63.36" x2="153.12001" y2="63.36" class="solid"></line> + </g> <g> <line x1="2.64" y1="63.36" x2="15.84" y2="63.36" class="solid"></line> <line x1="2.64" y1="63.36" x2="2.64" y2="73.920006" class="solid"></line> @@ -126,4 +188,8 @@ <line x1="42.24" y1="73.920006" x2="55.440002" y2="73.920006" class="solid"></line> <line x1="55.440002" y1="63.36" x2="55.440002" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="79.200005" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <line x1="105.600006" y1="52.800003" x2="100.32001" y2="63.36" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/3d/impossible.svg b/static/db/jave/3d/impossible.svg index 1837955ddbabc86ca26aa5145442a9770b962028..0474fa5f627494b295f40f543e6c5cd79dbbb2c2 100644 --- a/static/db/jave/3d/impossible.svg +++ b/static/db/jave/3d/impossible.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="279.84" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,24 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="110.880005" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="279.84" height="126.72"></rect> <g> <line x1="47.52" y1="10.56" x2="52.800003" y2="10.56" class="solid"></line> <line x1="47.52" y1="10.56" x2="5.28" y2="95.04" class="solid"></line> <line x1="5.28" y1="95.04" x2="0" y2="105.600006" class="solid"></line> <line x1="0" y1="105.600006" x2="5.28" y2="116.16" class="solid"></line> <line x1="5.28" y1="116.16" x2="36.960003" y2="116.16" class="solid"></line> + <line x1="153.12001" y1="10.56" x2="158.40001" y2="10.56" class="solid"></line> + <line x1="153.12001" y1="10.56" x2="110.880005" y2="95.04" class="solid"></line> + <line x1="242.88" y1="10.56" x2="248.16" y2="10.56" class="solid"></line> + <line x1="248.16" y1="10.56" x2="274.56" y2="63.36" class="solid"></line> + <line x1="237.6" y1="10.56" x2="195.36" y2="95.04" class="solid"></line> + <line x1="237.6" y1="10.56" x2="264" y2="63.36" class="solid"></line> + <line x1="264" y1="63.36" x2="274.56" y2="63.36" class="solid"></line> <line x1="58.08" y1="10.56" x2="15.84" y2="95.04" class="solid"></line> <line x1="58.08" y1="10.56" x2="100.32001" y2="95.04" class="solid"></line> + <line x1="163.68001" y1="10.56" x2="121.44" y2="95.04" class="solid"></line> + <line x1="163.68001" y1="10.56" x2="195.36" y2="73.920006" class="solid"></line> <line x1="58.08" y1="31.68" x2="31.68" y2="84.48" class="solid"></line> <line x1="58.08" y1="31.68" x2="95.04" y2="105.600006" class="solid"></line> <line x1="52.800003" y1="42.24" x2="63.36" y2="63.36" class="solid"></line> @@ -119,12 +145,37 @@ <line x1="21.12" y1="105.600006" x2="31.68" y2="105.600006" class="solid"></line> <line x1="68.64" y1="105.600006" x2="84.48" y2="105.600006" class="solid"></line> <line x1="95.04" y1="105.600006" x2="105.600006" y2="105.600006" class="solid"></line> - <line x1="100.32001" y1="95.04" x2="105.600006" y2="105.600006" class="solid"></line> + <line x1="100.32001" y1="95.04" x2="110.880005" y2="116.16" class="solid"></line> + <line x1="110.880005" y1="95.04" x2="100.32001" y2="116.16" class="solid"></line> + <line x1="121.44" y1="95.04" x2="110.880005" y2="116.16" class="solid"></line> <line x1="10.56" y1="105.600006" x2="15.84" y2="116.16" class="solid"></line> <line x1="31.68" y1="105.600006" x2="36.960003" y2="116.16" class="solid"></line> <line x1="68.64" y1="105.600006" x2="63.36" y2="116.16" class="solid"></line> <line x1="63.36" y1="116.16" x2="100.32001" y2="116.16" class="solid"></line> <line x1="95.04" y1="105.600006" x2="89.76" y2="116.16" class="solid"></line> - <line x1="105.600006" y1="105.600006" x2="100.32001" y2="116.16" class="solid"></line> + <line x1="163.68001" y1="31.68" x2="126.72" y2="105.600006" class="solid"></line> + <line x1="163.68001" y1="31.68" x2="179.52" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="52.800003" x2="174.24" y2="95.04" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="163.68001" y2="95.04" class="solid"></line> + <line x1="132" y1="95.04" x2="174.24" y2="95.04" class="solid"></line> + <line x1="237.6" y1="31.68" x2="195.36" y2="116.16" class="solid"></line> + <line x1="237.6" y1="31.68" x2="258.72" y2="73.920006" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="195.36" y2="116.16" class="solid"></line> + <line x1="242.88" y1="42.24" x2="211.20001" y2="105.600006" class="solid"></line> + <line x1="168.96" y1="63.36" x2="179.52" y2="63.36" class="solid"></line> + <line x1="174.24" y1="73.920006" x2="195.36" y2="73.920006" class="solid"></line> + <line x1="264" y1="63.36" x2="258.72" y2="73.920006" class="solid"></line> + <line x1="258.72" y1="73.920006" x2="269.28" y2="73.920006" class="solid"></line> + <line x1="274.56" y1="63.36" x2="269.28" y2="73.920006" class="solid"></line> + <line x1="179.52" y1="84.48" x2="190.08" y2="84.48" class="solid"></line> + <line x1="195.36" y1="73.920006" x2="190.08" y2="84.48" class="solid"></line> + <line x1="216.48001" y1="95.04" x2="264" y2="95.04" class="solid"></line> + <line x1="126.72" y1="105.600006" x2="190.08" y2="105.600006" class="solid"></line> + <line x1="195.36" y1="95.04" x2="184.8" y2="116.16" class="solid"></line> + <line x1="211.20001" y1="105.600006" x2="269.28" y2="105.600006" class="solid"></line> + <line x1="264" y1="95.04" x2="269.28" y2="105.600006" class="solid"></line> + <line x1="110.880005" y1="116.16" x2="184.8" y2="116.16" class="solid"></line> + <line x1="195.36" y1="116.16" x2="264" y2="116.16" class="solid"></line> + <line x1="269.28" y1="105.600006" x2="264" y2="116.16" class="solid"></line> </g> </svg> diff --git a/static/db/jave/3d/sub-zero.svg b/static/db/jave/3d/sub-zero.svg index afbc2c8ff179615db33ab66beaf5af59a3a67339..c26a656a22f920bcf69c43acc5c3f677001cd1c0 100644 --- a/static/db/jave/3d/sub-zero.svg +++ b/static/db/jave/3d/sub-zero.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="174.24" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,12 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="174.24" height="63.36"></rect> <line x1="21.12" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="14.52" x2="89.76" y2="14.52" class="solid"></line> + <line x1="79.200005" y1="17.16" x2="89.76" y2="17.16" class="solid"></line> + <line x1="84.48" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> + <text x="96.36" y="29.04" ><</text> <g> <line x1="5.28" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> <line x1="5.28" y1="10.56" x2="0" y2="21.12" class="solid"></line> @@ -115,4 +136,31 @@ <line x1="36.960003" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> <line x1="52.800003" y1="42.24" x2="47.52" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="63.36" y1="10.56" x2="95.04" y2="10.56" class="solid"></line> + <line x1="63.36" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> + <line x1="63.36" y1="10.56" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="95.04" y1="10.56" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="73.920006" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="52.800003" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="105.600006" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="10.56" x2="153.12001" y2="10.56" class="solid"></line> + <line x1="121.44" y1="10.56" x2="116.16" y2="21.12" class="solid"></line> + <line x1="121.44" y1="10.56" x2="137.28" y2="42.24" class="solid"></line> + <line x1="116.16" y1="21.12" x2="132" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="42.24" x2="168.96" y2="42.24" class="solid"></line> + <line x1="137.28" y1="42.24" x2="132" y2="52.800003" class="solid"></line> + <line x1="132" y1="52.800003" x2="163.68001" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="21.12" x2="158.40001" y2="21.12" class="solid"></line> + <line x1="153.12001" y1="10.56" x2="158.40001" y2="21.12" class="solid"></line> + <line x1="137.28" y1="21.12" x2="142.56001" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="31.68" x2="163.68001" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="31.68" x2="168.96" y2="42.24" class="solid"></line> + <line x1="168.96" y1="42.24" x2="163.68001" y2="52.800003" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/3d/swampland.svg b/static/db/jave/3d/swampland.svg index 7bee33d122b3c2307071381c5266b86f9be3b7f5..7d3ee2928a998c2af1be8924ea28933c5c123aa2 100644 --- a/static/db/jave/3d/swampland.svg +++ b/static/db/jave/3d/swampland.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="184.8" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,15 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="184.8" height="84.48"></rect> <text x="6.6000004" y="29.04" >:</text> + <text x="64.68" y="29.04" >:</text> + <text x="122.76" y="29.04" >:</text> + <text x="133.32" y="29.04" >:</text> + <text x="133.32" y="50.160004" >:</text> <text x="27.720001" y="60.72" >.</text> + <text x="85.8" y="60.72" >:</text> + <text x="138.6" y="60.72" >:</text> <g> <line x1="5.28" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <line x1="5.28" y1="10.56" x2="0" y2="21.12" class="solid"></line> @@ -116,13 +139,67 @@ <line x1="52.800003" y1="73.920006" x2="68.64" y2="73.920006" class="solid"></line> <line x1="73.920006" y1="63.36" x2="68.64" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="68.64" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="121.44" y1="10.56" x2="153.12001" y2="10.56" class="solid"></line> + <line x1="121.44" y1="10.56" x2="116.16" y2="21.12" class="solid"></line> + <line x1="116.16" y1="21.12" x2="147.84001" y2="21.12" class="solid"></line> + <line x1="153.12001" y1="10.56" x2="147.84001" y2="21.12" class="solid"></line> + <line x1="153.12001" y1="10.56" x2="158.40001" y2="21.12" class="solid"></line> + <line x1="116.16" y1="21.12" x2="142.56001" y2="73.920006" class="solid"></line> + <line x1="129.36" y1="21.12" x2="129.36" y2="42.24" class="broken"></line> + <line x1="63.36" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="116.16" y2="31.68" class="solid"></line> + <line x1="58.08" y1="21.12" x2="84.48" y2="73.920006" class="solid"></line> + <line x1="71.28001" y1="21.12" x2="71.28001" y2="42.24" class="broken"></line> + <line x1="76.560005" y1="21.12" x2="76.560005" y2="52.800003" class="broken"></line> + <line x1="100.32001" y1="21.12" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="116.16" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="126.72" y2="42.24" class="solid"></line> + <line x1="121.44" y1="42.24" x2="132" y2="63.36" class="solid"></line> + <line x1="84.48" y1="73.920006" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="132" y1="63.36" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="137.28" y1="31.68" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="147.84001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="158.40001" y1="21.12" x2="153.12001" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="31.68" x2="158.40001" y2="63.36" class="solid"></line> + <line x1="132" y1="31.68" x2="147.84001" y2="63.36" class="solid"></line> + <line x1="134.64" y1="36.960003" x2="134.64" y2="42.24" class="solid"></line> + <line x1="139.92" y1="47.52" x2="139.92" y2="52.800003" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="158.40001" y2="63.36" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="168.96" y2="42.24" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="153.12001" y2="52.800003" class="solid"></line> + <line x1="153.12001" y1="52.800003" x2="163.68001" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="42.24" x2="163.68001" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="42.24" x2="179.52" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="52.800003" x2="174.24" y2="73.920006" class="solid"></line> + <line x1="142.56001" y1="73.920006" x2="174.24" y2="73.920006" class="solid"></line> + <line x1="179.52" y1="63.36" x2="174.24" y2="73.920006" class="solid"></line> + </g> <g> <line x1="26.400002" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <path d="M 31.68,31.68 A 10.56,10.56 0,0,1 31.68,42.24" class="nofill"></path> </g> + <g> + <line x1="84.48" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + <path d="M 89.76,31.68 A 10.56,10.56 0,0,1 89.76,42.24" class="nofill"></path> + </g> <g> <path d="M 23.76,31.68 A 7.92,7.92 0,0,0 23.76,42.24" class="nofill"></path> <line x1="23.76" y1="42.24" x2="23.76" y2="63.36" class="broken"></line> </g> + <g> + <path d="M 81.840004,31.68 A 7.92,7.92 0,0,0 81.840004,42.24" class="nofill"></path> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="63.36" class="broken"></line> + </g> + <g> + <line x1="95.04" y1="52.800003" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 95.04,52.800003 A 10.56,10.56 0,0,0 95.04,63.36" class="nofill"></path> + <line x1="95.04" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/effect/twisted.flf b/static/db/jave/3d/twisted.flf similarity index 100% rename from static/db/jave/effect/twisted.flf rename to static/db/jave/3d/twisted.flf diff --git a/static/db/jave/3d/twisted.svg b/static/db/jave/3d/twisted.svg new file mode 100644 index 0000000000000000000000000000000000000000..ce3b1944043e8c9f91f689d686af8701d6ad8653 --- /dev/null +++ b/static/db/jave/3d/twisted.svg @@ -0,0 +1,222 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="147.84001" height="84.48"></rect> + <g> + <line x1="15.84" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <line x1="15.84" y1="10.56" x2="5.28" y2="31.68" class="solid"></line> + <line x1="15.84" y1="10.56" x2="21.12" y2="21.12" class="solid"></line> + <line x1="21.12" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> + <line x1="42.24" y1="10.56" x2="36.960003" y2="21.12" class="solid"></line> + <line x1="42.24" y1="10.56" x2="52.800003" y2="31.68" class="solid"></line> + <line x1="21.12" y1="21.12" x2="15.84" y2="31.68" class="solid"></line> + <line x1="36.960003" y1="21.12" x2="42.24" y2="31.68" class="solid"></line> + <line x1="5.28" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> + <line x1="15.84" y1="31.68" x2="21.12" y2="42.24" class="solid"></line> + <line x1="42.24" y1="31.68" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> + <line x1="10.56" y1="42.24" x2="5.28" y2="52.800003" class="solid"></line> + <line x1="21.12" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> + <line x1="36.960003" y1="42.24" x2="42.24" y2="52.800003" class="solid"></line> + <line x1="47.52" y1="42.24" x2="52.800003" y2="52.800003" class="solid"></line> + <path d="M 5.28,52.800003 A 10.56,10.56 0,0,0 5.28,63.36" class="nofill"></path> + <path d="M 15.84,52.800003 A 10.56,10.56 0,0,0 15.84,63.36" class="nofill"></path> + <line x1="15.84" y1="63.36" x2="21.12" y2="63.36" class="solid"></line> + <path d="M 52.800003,52.800003 A 10.56,10.56 0,0,1 52.800003,63.36" class="nofill"></path> + <line x1="5.28" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> + <line x1="15.84" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> + <line x1="10.56" y1="73.920006" x2="21.12" y2="73.920006" class="solid"></line> + <line x1="26.400002" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> + <path d="M 26.400002,52.800003 A 10.56,10.56 0,0,0 26.400002,63.36" class="nofill"></path> + <path d="M 31.68,52.800003 A 10.56,10.56 0,0,1 31.68,63.36" class="nofill"></path> + <line x1="26.400002" y1="63.36" x2="21.12" y2="73.920006" class="solid"></line> + <line x1="31.68" y1="63.36" x2="36.960003" y2="73.920006" class="solid"></line> + <line x1="36.960003" y1="73.920006" x2="47.52" y2="73.920006" class="solid"></line> + <line x1="36.960003" y1="63.36" x2="42.24" y2="63.36" class="solid"></line> + <path d="M 42.24,52.800003 A 10.56,10.56 0,0,1 42.24,63.36" class="nofill"></path> + <line x1="42.24" y1="63.36" x2="47.52" y2="73.920006" class="solid"></line> + <line x1="52.800003" y1="63.36" x2="47.52" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="10.56" x2="95.04" y2="10.56" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="89.76" y2="21.12" class="solid"></line> + <line x1="95.04" y1="10.56" x2="89.76" y2="21.12" class="solid"></line> + <line x1="95.04" y1="10.56" x2="100.32001" y2="21.12" class="solid"></line> + <path d="M 79.200005,21.12 A 10.56,10.56 0,0,0 79.200005,31.68" class="nofill"></path> + <line x1="79.200005" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + <path d="M 89.76,21.12 A 10.56,10.56 0,0,1 89.76,31.68" class="nofill"></path> + <path d="M 100.32001,21.12 A 10.56,10.56 0,0,1 100.32001,31.68" class="nofill"></path> + <line x1="100.32001" y1="31.68" x2="95.04" y2="42.24" class="solid"></line> + <line x1="95.04" y1="42.24" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + <line x1="73.920006" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="63.36" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> + <line x1="63.36" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,1 58.08,31.68" class="nofill"></path> + <path d="M 68.64,21.12 A 10.56,10.56 0,0,1 68.64,31.68" class="nofill"></path> + <line x1="58.08" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="68.64" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="58.08" y2="52.800003" class="solid"></line> + <line x1="63.36" y1="42.24" x2="68.64" y2="52.800003" class="solid"></line> + <path d="M 58.08,52.800003 A 10.56,10.56 0,0,1 58.08,63.36" class="nofill"></path> + <path d="M 68.64,52.800003 A 10.56,10.56 0,0,1 68.64,63.36" class="nofill"></path> + <line x1="58.08" y1="63.36" x2="63.36" y2="73.920006" class="solid"></line> + <line x1="68.64" y1="63.36" x2="63.36" y2="73.920006" class="solid"></line> + <line x1="63.36" y1="73.920006" x2="95.04" y2="73.920006" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <path d="M 79.200005,52.800003 A 10.56,10.56 0,0,0 79.200005,63.36" class="nofill"></path> + <line x1="79.200005" y1="63.36" x2="89.76" y2="63.36" class="solid"></line> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,1 89.76,63.36" class="nofill"></path> + <line x1="89.76" y1="63.36" x2="95.04" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="95.04" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="110.880005" y1="10.56" x2="137.28" y2="10.56" class="solid"></line> + <line x1="110.880005" y1="10.56" x2="105.600006" y2="21.12" class="solid"></line> + <line x1="110.880005" y1="10.56" x2="116.16" y2="21.12" class="solid"></line> + <path d="M 105.600006,21.12 A 10.56,10.56 0,0,1 105.600006,31.68" class="nofill"></path> + <path d="M 116.16,21.12 A 10.56,10.56 0,0,1 116.16,31.68" class="nofill"></path> + <line x1="105.600006" y1="31.68" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="116.16" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="42.24" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="116.16" y2="52.800003" class="solid"></line> + <path d="M 105.600006,52.800003 A 10.56,10.56 0,0,1 105.600006,63.36" class="nofill"></path> + <path d="M 116.16,52.800003 A 10.56,10.56 0,0,1 116.16,63.36" class="nofill"></path> + <line x1="105.600006" y1="63.36" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="116.16" y1="63.36" x2="110.880005" y2="73.920006" class="solid"></line> + <line x1="110.880005" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> + <line x1="121.44" y1="21.12" x2="132" y2="21.12" class="solid"></line> + <line x1="137.28" y1="10.56" x2="132" y2="21.12" class="solid"></line> + <line x1="137.28" y1="10.56" x2="142.56001" y2="21.12" class="solid"></line> + <line x1="121.44" y1="31.68" x2="137.28" y2="31.68" class="solid"></line> + <line x1="132" y1="21.12" x2="137.28" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="137.28" y2="31.68" class="solid"></line> + <line x1="126.72" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="121.44" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="132" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="63.36" x2="132" y2="63.36" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="132" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> + <line x1="142.56001" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="26.400002" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> + <path d="M 26.400002,31.68 A 10.56,10.56 0,0,0 26.400002,42.24" class="nofill"></path> + <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> + <path d="M 31.68,31.68 A 10.56,10.56 0,0,1 31.68,42.24" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/block/braced.svg b/static/db/jave/block/braced.svg index 3aff9ef021365a6c9dfc19d0c80ceda700f1d617..387a0d8385bf8244c8b9ba5305a6ff58d2b9b2e8 100644 --- a/static/db/jave/block/braced.svg +++ b/static/db/jave/block/braced.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,22 +112,55 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="52.800003"></rect> + <text x="69.96" y="7.92" >.</text> <text x="17.16" y="18.480001" >{}</text> + <text x="54.120003" y="18.480001" >{</text> + <line x1="58.08" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <text x="64.68" y="18.480001" >}</text> + <text x="75.240005" y="18.480001" >}</text> + <text x="91.08" y="18.480001" >}`</text> + <text x="54.120003" y="29.04" >{</text> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + <text x="64.68" y="29.04" >}</text> + <text x="75.240005" y="29.04" >}</text> + <text x="91.08" y="29.04" >},</text> <text x="1.32" y="39.600002" >`</text> - <text x="38.280003" y="39.600002" >'</text> + <text x="69.96" y="39.600002" >'</text> <g> <path d="M 15.84,5.28 A 5.28,5.28 0,0,0 11.88,7.92" class="nofill"></path> <line x1="11.88" y1="7.92" x2="0" y2="31.68" class="solid"></line> <line x1="15.84" y1="5.28" x2="26.400002" y2="5.28" class="solid"></line> <path d="M 26.400002,5.28 A 5.28,5.28 0,0,1 30.36,7.92" class="nofill"></path> - <line x1="30.36" y1="7.92" x2="42.24" y2="31.68" class="solid"></line> + <line x1="30.36" y1="7.92" x2="43.56" y2="34.32" class="solid"></line> + <path d="M 43.56,34.32 A 5.28,5.28 0,0,0 47.52,36.960003" class="nofill"></path> + <path d="M 47.52,5.28 A 2.64,2.64 0,0,0 44.88,7.92" class="nofill"></path> + <line x1="44.88" y1="7.92" x2="44.88" y2="34.32" class="solid"></line> + <line x1="47.52" y1="5.28" x2="68.64" y2="5.28" class="solid"></line> + <path d="M 44.88,34.32 A 2.64,2.64 0,0,0 47.52,36.960003" class="nofill"></path> + <line x1="47.52" y1="36.960003" x2="68.64" y2="36.960003" class="solid"></line> + </g> + <g> + <path d="M 84.48,5.28 A 2.64,2.64 0,0,0 81.840004,7.92" class="nofill"></path> + <line x1="81.840004" y1="7.92" x2="81.840004" y2="34.32" class="solid"></line> + <line x1="84.48" y1="5.28" x2="105.600006" y2="5.28" class="solid"></line> + <path d="M 105.600006,5.28 A 2.64,2.64 0,0,1 108.240005,7.92" class="nofill"></path> + <line x1="108.240005" y1="7.92" x2="108.240005" y2="13.200001" class="solid"></line> + <path d="M 81.840004,34.32 A 2.64,2.64 0,0,0 84.48,36.960003" class="nofill"></path> + <line x1="84.48" y1="36.960003" x2="105.600006" y2="36.960003" class="solid"></line> + <line x1="100.32001" y1="15.84" x2="105.600006" y2="15.84" class="solid"></line> + <path d="M 108.240005,13.200001 A 2.64,2.64 0,0,1 105.600006,15.84" class="nofill"></path> + <line x1="100.32001" y1="26.400002" x2="105.600006" y2="26.400002" class="solid"></line> + <path d="M 105.600006,26.400002 A 2.64,2.64 0,0,1 108.240005,29.04" class="nofill"></path> + <line x1="108.240005" y1="29.04" x2="108.240005" y2="34.32" class="solid"></line> + <path d="M 108.240005,34.32 A 2.64,2.64 0,0,1 105.600006,36.960003" class="nofill"></path> </g> <g> <line x1="21.12" y1="21.12" x2="14.52" y2="34.32" class="solid"></line> <line x1="21.12" y1="21.12" x2="27.720001" y2="34.32" class="solid"></line> <path d="M 27.720001,34.32 A 5.28,5.28 0,0,0 31.68,36.960003" class="nofill"></path> - <line x1="31.68" y1="36.960003" x2="36.960003" y2="36.960003" class="solid"></line> + <line x1="31.68" y1="36.960003" x2="39.600002" y2="36.960003" class="solid"></line> + <path d="M 44.88,31.68 A 5.28,5.28 0,0,1 39.600002,36.960003" class="nofill"></path> <line x1="5.28" y1="36.960003" x2="10.56" y2="36.960003" class="solid"></line> <path d="M 14.52,34.32 A 5.28,5.28 0,0,1 10.56,36.960003" class="nofill"></path> </g> diff --git a/static/db/jave/block/crazy.svg b/static/db/jave/block/crazy.svg index ab3ff1f1bbb00b775876b41661050cbed32ac6c3..61c3e24651996116e7db355690702a9c6b307d42 100644 --- a/static/db/jave/block/crazy.svg +++ b/static/db/jave/block/crazy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="147.84001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="195.36" height="147.84001" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,85 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="147.84001"></rect> + <rect class="backdrop" x="0" y="0" width="195.36" height="147.84001"></rect> + <text x="149.16" y="7.92" >...</text> + <line x1="163.68001" y1="10.56" x2="168.96" y2="10.56" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="147.84001" y2="21.12" class="solid"></line> + <text x="149.16" y="18.480001" >...</text> + <line x1="163.68001" y1="21.12" x2="168.96" y2="21.12" class="solid"></line> + <text x="170.28001" y="18.480001" >''</text> + <line x1="139.92" y1="21.12" x2="118.8" y2="42.24" class="broken"></line> + <text x="138.6" y="29.04" >'</text> + <text x="175.56001" y="29.04" >'.</text> + <text x="117.48" y="50.160004" >'</text> <line x1="21.12" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> + <line x1="73.920006" y1="63.36" x2="84.48" y2="63.36" class="solid"></line> + <line x1="118.8" y1="52.800003" x2="118.8" y2="76.560005" class="solid"></line> <text x="6.6000004" y="71.28001" >.</text> <line x1="13.200001" y1="63.36" x2="13.200001" y2="84.48" class="broken"></line> <text x="33" y="71.28001" >'.</text> + <line x1="68.64" y1="63.36" x2="63.36" y2="73.920006" class="solid"></line> + <text x="69.96" y="71.28001" >'</text> + <line x1="73.920006" y1="73.920006" x2="84.48" y2="73.920006" class="solid"></line> + <text x="91.08" y="71.28001" >'.</text> <line x1="5.28" y1="73.920006" x2="0" y2="84.48" class="solid"></line> + <line x1="68.64" y1="73.920006" x2="63.36" y2="84.48" class="solid"></line> + <text x="69.96" y="81.840004" >`</text> + <text x="85.8" y="81.840004" >'</text> + <line x1="92.4" y1="81.840004" x2="92.4" y2="95.04" class="solid"></line> + <line x1="97.68" y1="68.64" x2="108.240005" y2="79.200005" class="broken"></line> + <path d="M 100.32001,73.920006 A 21.12,21.12 0,0,1 110.880005,84.48" class="nofill"></path> <text x="1.32" y="92.4" >`"</text> + <line x1="102.96001" y1="84.48" x2="102.96001" y2="97.68" class="solid"></line> + <text x="122.76" y="92.4" >'.</text> + <text x="186.12001" y="92.4" >.</text> <text x="11.88" y="102.96001" >'</text> <text x="22.44" y="102.96001" >''</text> + <text x="117.48" y="102.96001" >'.</text> + <line x1="129.36" y1="89.76" x2="139.92" y2="100.32001" class="broken"></line> + <text x="138.6" y="102.96001" >.</text> + <line x1="190.08" y1="95.04" x2="179.52" y2="116.16" class="solid"></line> + <text x="69.96" y="113.520004" >'.</text> + <line x1="100.32001" y1="105.600006" x2="95.04" y2="116.16" class="solid"></line> + <text x="128.04001" y="113.520004" >`</text> <text x="17.16" y="124.08" >.</text> <line x1="21.12" y1="126.72" x2="26.400002" y2="126.72" class="solid"></line> <text x="27.720001" y="124.08" >,</text> <line x1="31.68" y1="116.16" x2="36.960003" y2="126.72" class="solid"></line> + <text x="69.96" y="124.08" >`</text> + <text x="85.8" y="124.08" >'`</text> + <text x="175.56001" y="124.08" >`</text> <text x="22.44" y="134.64" >'</text> <text x="38.280003" y="134.64" >`"</text> + <g> + <line x1="142.56001" y1="10.56" x2="147.84001" y2="10.56" class="solid"></line> + <path d="M 129.36,15.84 A 5.28,5.28 0,0,0 124.08,21.12" class="nofill"></path> + <line x1="129.36" y1="15.84" x2="137.28" y2="15.84" class="solid"></line> + <line x1="142.56001" y1="10.56" x2="137.28" y2="15.84" class="solid"></line> + <line x1="129.36" y1="15.84" x2="118.8" y2="26.400002" class="broken"></line> + </g> + <g> + <path d="M 174.24,10.56 A 21.12,21.12 0,0,1 184.8,21.12" class="nofill"></path> + <line x1="184.8" y1="21.12" x2="190.08" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="21.12" x2="55.440002" y2="26.400002" class="solid"></line> + <line x1="55.440002" y1="26.400002" x2="55.440002" y2="110.880005" class="solid"></line> + <line x1="55.440002" y1="110.880005" x2="47.52" y2="126.72" class="solid"></line> + </g> + <g> + <line x1="60.72" y1="21.12" x2="60.72" y2="89.76" class="broken"></line> + <line x1="60.72" y1="89.76" x2="68.64" y2="105.600006" class="solid"></line> + </g> + <g> + <path d="M 126.72,21.12 A 21.12,21.12 0,0,0 116.16,31.68" class="nofill"></path> + <line x1="116.16" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="108.240005" y1="50.160004" x2="108.240005" y2="76.560005" class="solid"></line> + <path d="M 108.240005,76.560005 A 10.56,10.56 0,0,0 109.560005,81.840004" class="nofill"></path> + <line x1="109.560005" y1="81.840004" x2="116.16" y2="95.04" class="solid"></line> + </g> <g> <line x1="15.84" y1="68.64" x2="26.400002" y2="68.64" class="solid"></line> <path d="M 26.400002,68.64 A 5.28,5.28 0,0,1 30.36,71.28001" class="nofill"></path> @@ -118,8 +199,8 @@ </g> <g> <line x1="44.88" y1="73.920006" x2="44.88" y2="118.8" class="solid"></line> - <line x1="44.88" y1="116.16" x2="52.800003" y2="116.16" class="solid"></line> - <line x1="52.800003" y1="116.16" x2="47.52" y2="126.72" class="solid"></line> + <line x1="44.88" y1="116.16" x2="55.440002" y2="116.16" class="solid"></line> + <line x1="55.440002" y1="116.16" x2="55.440002" y2="118.8" class="solid"></line> </g> <g> <line x1="15.84" y1="95.04" x2="26.400002" y2="95.04" class="solid"></line> @@ -132,4 +213,30 @@ <path d="M 6.6000004,129.36 A 5.28,5.28 0,0,0 10.56,132" class="nofill"></path> <line x1="10.56" y1="132" x2="21.12" y2="132" class="solid"></line> </g> + <g> + <line x1="60.72" y1="95.04" x2="60.72" y2="100.32001" class="solid"></line> + <line x1="60.72" y1="100.32001" x2="68.64" y2="116.16" class="solid"></line> + <line x1="63.36" y1="105.600006" x2="58.08" y2="116.16" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="95.04" x2="89.76" y2="105.600006" class="solid"></line> + <path d="M 89.76,105.600006 A 21.12,21.12 0,0,1 79.200005,116.16" class="nofill"></path> + </g> + <g> + <line x1="142.56001" y1="105.600006" x2="168.96" y2="105.600006" class="solid"></line> + <line x1="174.24" y1="100.32001" x2="168.96" y2="105.600006" class="solid"></line> + <line x1="174.24" y1="100.32001" x2="182.16" y2="100.32001" class="solid"></line> + <path d="M 187.44,95.04 A 5.28,5.28 0,0,1 182.16,100.32001" class="nofill"></path> + </g> + <g> + <line x1="87.12" y1="105.600006" x2="76.560005" y2="116.16" class="broken"></line> + <line x1="76.560005" y1="116.16" x2="76.560005" y2="118.8" class="solid"></line> + <path d="M 76.560005,118.8 A 2.64,2.64 0,0,0 79.200005,121.44" class="nofill"></path> + <line x1="79.200005" y1="121.44" x2="84.48" y2="121.44" class="solid"></line> + </g> + <g> + <line x1="132" y1="110.880005" x2="137.28" y2="110.880005" class="solid"></line> + <line x1="137.28" y1="110.880005" x2="142.56001" y2="116.16" class="solid"></line> + <line x1="142.56001" y1="116.16" x2="174.24" y2="116.16" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/effect/dancingfont.flf b/static/db/jave/block/dancingfont.flf similarity index 100% rename from static/db/jave/effect/dancingfont.flf rename to static/db/jave/block/dancingfont.flf diff --git a/static/db/jave/block/dancingfont.svg b/static/db/jave/block/dancingfont.svg new file mode 100644 index 0000000000000000000000000000000000000000..68f78e502f5e957f095524e4bef3d7c13b89a8d0 --- /dev/null +++ b/static/db/jave/block/dancingfont.svg @@ -0,0 +1,206 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="147.84001" height="84.48"></rect> + <text x="1.32" y="18.480001" >U</text> + <text x="96.36" y="18.480001" >uU</text> + <text x="117.48" y="18.480001" >"</text> + <line x1="21.12" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> + <line x1="58.08" y1="21.12" x2="63.36" y2="31.68" class="solid"></line> + <line x1="66" y1="21.12" x2="66" y2="31.68" class="solid"></line> + <text x="106.920006" y="29.04" >|</text> + <text x="128.04001" y="29.04" >u</text> + <text x="64.68" y="39.600002" >|</text> + <text x="38.280003" y="60.72" >></text> + <polygon points="42.24,55.440002 47.52,58.08 42.24,60.72" class="filled"></polygon> + <text x="69.96" y="71.28001" >)</text> + <text x="22.44" y="18.480001" >\ u U | __</text> + <g> + <line x1="21.12" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> + <line x1="21.12" y1="10.56" x2="0" y2="52.800003" class="solid"></line> + <line x1="5.28" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> + <line x1="0" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> + <line x1="5.28" y1="52.800003" x2="10.56" y2="63.36" class="solid"></line> + <line x1="31.68" y1="21.12" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="42.24" y1="21.12" x2="36.960003" y2="31.68" class="solid"></line> + <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> + <line x1="15.84" y1="42.24" x2="10.56" y2="52.800003" class="solid"></line> + <line x1="31.68" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> + <line x1="36.960003" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="10.56" y1="52.800003" x2="15.84" y2="63.36" class="solid"></line> + <path d="M 5.28,63.36 A 10.56,10.56 0,0,0 5.28,73.920006" class="nofill"></path> + <line x1="5.28" y1="73.920006" x2="15.84" y2="73.920006" class="solid"></line> + <path d="M 15.84,63.36 A 10.56,10.56 0,0,1 15.84,73.920006" class="nofill"></path> + </g> + <g> + <line x1="68.64" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,1 89.76,21.12" class="nofill"></path> + <line x1="89.76" y1="21.12" x2="95.04" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="10.56" x2="139.92" y2="10.56" class="solid"></line> + <line x1="116.16" y1="10.56" x2="110.880005" y2="21.12" class="solid"></line> + <line x1="118.8" y1="21.12" x2="139.92" y2="21.12" class="solid"></line> + <line x1="139.92" y1="10.56" x2="139.92" y2="21.12" class="solid"></line> + <line x1="118.8" y1="21.12" x2="118.8" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="76.560005" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="42.24" class="solid"></line> + <line x1="76.560005" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> + <path d="M 84.48,31.68 A 10.56,10.56 0,0,1 84.48,42.24" class="nofill"></path> + </g> + <g> + <line x1="100.32001" y1="21.12" x2="97.68" y2="26.400002" class="solid"></line> + <line x1="97.68" y1="26.400002" x2="97.68" y2="36.960003" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="97.68" y1="36.960003" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="66" y1="42.24" x2="66" y2="63.36" class="solid"></line> + <line x1="66" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="63.36" x2="66" y2="63.36" class="solid"></line> + <line x1="71.28001" y1="52.800003" x2="71.28001" y2="63.36" class="solid"></line> + <line x1="79.200005" y1="52.800003" x2="84.48" y2="63.36" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="89.76" y2="63.36" class="solid"></line> + <line x1="89.76" y1="63.36" x2="95.04" y2="63.36" class="solid"></line> + <path d="M 58.08,63.36 A 10.56,10.56 0,0,0 58.08,73.920006" class="nofill"></path> + <line x1="58.08" y1="73.920006" x2="68.64" y2="73.920006" class="solid"></line> + <path d="M 84.48,63.36 A 10.56,10.56 0,0,0 84.48,73.920006" class="nofill"></path> + <line x1="84.48" y1="73.920006" x2="95.04" y2="73.920006" class="solid"></line> + <path d="M 95.04,63.36 A 10.56,10.56 0,0,1 95.04,73.920006" class="nofill"></path> + </g> + <g> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="36.960003" class="solid"></line> + <line x1="108.240005" y1="36.960003" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="116.16" y1="52.800003" x2="139.92" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="52.800003" x2="116.16" y2="63.36" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + <line x1="132" y1="52.800003" x2="137.28" y2="63.36" class="solid"></line> + <line x1="126.72" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="121.44" y1="42.24" x2="139.92" y2="42.24" class="solid"></line> + <line x1="139.92" y1="42.24" x2="139.92" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="63.36" x2="110.880005" y2="63.36" class="solid"></line> + <line x1="116.16" y1="52.800003" x2="110.880005" y2="63.36" class="solid"></line> + <path d="M 105.600006,63.36 A 10.56,10.56 0,0,0 105.600006,73.920006" class="nofill"></path> + <line x1="105.600006" y1="73.920006" x2="116.16" y2="73.920006" class="solid"></line> + <path d="M 116.16,63.36 A 10.56,10.56 0,0,1 116.16,73.920006" class="nofill"></path> + <path d="M 126.72,63.36 A 10.56,10.56 0,0,0 126.72,73.920006" class="nofill"></path> + <line x1="126.72" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> + <path d="M 137.28,63.36 A 10.56,10.56 0,0,1 137.28,73.920006" class="nofill"></path> + </g> + <g> + <path d="M 36.960003,63.36 A 10.56,10.56 0,0,0 36.960003,73.920006" class="nofill"></path> + <line x1="36.960003" y1="73.920006" x2="47.52" y2="73.920006" class="solid"></line> + <path d="M 47.52,63.36 A 10.56,10.56 0,0,1 47.52,73.920006" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/effect/fire_font-k.flf b/static/db/jave/block/fire_font-k.flf similarity index 100% rename from static/db/jave/effect/fire_font-k.flf rename to static/db/jave/block/fire_font-k.flf diff --git a/static/db/jave/effect/fire_font-k.svg b/static/db/jave/block/fire_font-k.svg similarity index 56% rename from static/db/jave/effect/fire_font-k.svg rename to static/db/jave/block/fire_font-k.svg index 26f058d311ac7e78fd973a8e4e07ef2115127a6a..d4acc94436992ebd028422c56ba2e45eb3ca045b 100644 --- a/static/db/jave/effect/fire_font-k.svg +++ b/static/db/jave/block/fire_font-k.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="110.880005" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="110.880005" height="95.04"></rect> + <path d="M 52.800003,31.68 A 10.56,10.56 0,0,1 52.800003,42.24" class="nofill"></path> <path d="M 31.68,42.24 A 10.56,10.56 0,0,1 31.68,52.800003" class="nofill"></path> + <line x1="63.36" y1="73.920006" x2="68.64" y2="73.920006" class="solid"></line> + <text x="59.4" y="81.840004" >.</text> <g> <path d="M 21.12,10.56 A 10.56,10.56 0,0,0 21.12,21.12" class="nofill"></path> <line x1="21.12" y1="21.12" x2="26.400002" y2="31.68" class="solid"></line> @@ -104,10 +124,26 @@ <line x1="21.12" y1="42.24" x2="26.400002" y2="42.24" class="solid"></line> <path d="M 26.400002,31.68 A 10.56,10.56 0,0,1 26.400002,42.24" class="nofill"></path> </g> + <g> + <path d="M 68.64,10.56 A 10.56,10.56 0,0,1 68.64,21.12" class="nofill"></path> + <line x1="68.64" y1="21.12" x2="63.36" y2="31.68" class="solid"></line> + </g> <g> <path d="M 15.84,21.12 A 10.56,10.56 0,0,1 15.84,31.68" class="nofill"></path> <path d="M 15.84,31.68 A 10.56,10.56 0,0,0 15.84,42.24" class="nofill"></path> </g> + <g> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <line x1="58.08" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + <path d="M 58.08,42.24 A 10.56,10.56 0,0,0 58.08,52.800003" class="nofill"></path> + <line x1="58.08" y1="52.800003" x2="63.36" y2="52.800003" class="solid"></line> + <path d="M 63.36,42.24 A 10.56,10.56 0,0,1 63.36,52.800003" class="nofill"></path> + <line x1="60.72" y1="52.800003" x2="60.72" y2="66" class="solid"></line> + </g> + <g> + <path d="M 73.920006,21.12 A 10.56,10.56 0,0,0 73.920006,31.68" class="nofill"></path> + <path d="M 73.920006,31.68 A 10.56,10.56 0,0,1 73.920006,42.24" class="nofill"></path> + </g> <g> <path d="M 5.28,31.68 A 10.56,10.56 0,0,0 5.28,42.24" class="nofill"></path> <path d="M 5.28,42.24 A 10.56,10.56 0,0,1 5.28,52.800003" class="nofill"></path> @@ -135,4 +171,34 @@ <line x1="36.960003" y1="63.36" x2="42.24" y2="63.36" class="solid"></line> <path d="M 42.24,52.800003 A 10.56,10.56 0,0,1 42.24,63.36" class="nofill"></path> </g> + <g> + <path d="M 68.64,31.68 A 10.56,10.56 0,0,0 68.64,42.24" class="nofill"></path> + <path d="M 68.64,31.68 A 10.56,10.56 0,0,1 68.64,42.24" class="nofill"></path> + <line x1="68.64" y1="42.24" x2="73.920006" y2="52.800003" class="solid"></line> + <path d="M 68.64,52.800003 A 10.56,10.56 0,0,0 68.64,63.36" class="nofill"></path> + <line x1="68.64" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <path d="M 73.920006,52.800003 A 10.56,10.56 0,0,1 73.920006,63.36" class="nofill"></path> + <line x1="73.920006" y1="63.36" x2="84.48" y2="84.48" class="solid"></line> + <path d="M 95.04,31.68 A 10.56,10.56 0,0,0 95.04,42.24" class="nofill"></path> + <line x1="95.04" y1="42.24" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 95.04,52.800003 A 10.56,10.56 0,0,0 95.04,63.36" class="nofill"></path> + <line x1="95.04" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + <line x1="89.76" y1="73.920006" x2="97.68" y2="73.920006" class="solid"></line> + <line x1="97.68" y1="63.36" x2="97.68" y2="84.48" class="solid"></line> + <line x1="84.48" y1="84.48" x2="97.68" y2="84.48" class="solid"></line> + </g> + <g> + <path d="M 50.160004,42.24 A 7.92,7.92 0,0,0 50.160004,52.800003" class="nofill"></path> + <line x1="50.160004" y1="52.800003" x2="50.160004" y2="84.48" class="solid"></line> + <line x1="50.160004" y1="84.48" x2="58.08" y2="84.48" class="solid"></line> + </g> + <g> + <path d="M 89.76,42.24 A 10.56,10.56 0,0,1 89.76,52.800003" class="nofill"></path> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,0 89.76,63.36" class="nofill"></path> + </g> + <g> + <line x1="84.48" y1="63.36" x2="73.920006" y2="84.48" class="solid"></line> + <line x1="63.36" y1="84.48" x2="73.920006" y2="84.48" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/effect/fire_font-s.flf b/static/db/jave/block/fire_font-s.flf similarity index 100% rename from static/db/jave/effect/fire_font-s.flf rename to static/db/jave/block/fire_font-s.flf diff --git a/static/db/jave/effect/fire_font-s.svg b/static/db/jave/block/fire_font-s.svg similarity index 56% rename from static/db/jave/effect/fire_font-s.svg rename to static/db/jave/block/fire_font-s.svg index 26f058d311ac7e78fd973a8e4e07ef2115127a6a..9622070895202fd0a77d0957a93564d89ced8ff3 100644 --- a/static/db/jave/effect/fire_font-s.svg +++ b/static/db/jave/block/fire_font-s.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,12 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="95.04"></rect> <path d="M 31.68,42.24 A 10.56,10.56 0,0,1 31.68,52.800003" class="nofill"></path> + <text x="43.56" y="60.72" >)</text> + <line x1="58.08" y1="73.920006" x2="63.36" y2="73.920006" class="solid"></line> + <text x="69.96" y="71.28001" >Y</text> + <text x="54.120003" y="81.840004" >.</text> <g> <path d="M 21.12,10.56 A 10.56,10.56 0,0,0 21.12,21.12" class="nofill"></path> <line x1="21.12" y1="21.12" x2="26.400002" y2="31.68" class="solid"></line> @@ -104,10 +125,26 @@ <line x1="21.12" y1="42.24" x2="26.400002" y2="42.24" class="solid"></line> <path d="M 26.400002,31.68 A 10.56,10.56 0,0,1 26.400002,42.24" class="nofill"></path> </g> + <g> + <path d="M 63.36,10.56 A 10.56,10.56 0,0,1 63.36,21.12" class="nofill"></path> + <line x1="63.36" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> + </g> <g> <path d="M 15.84,21.12 A 10.56,10.56 0,0,1 15.84,31.68" class="nofill"></path> <path d="M 15.84,31.68 A 10.56,10.56 0,0,0 15.84,42.24" class="nofill"></path> </g> + <g> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,0 52.800003,31.68" class="nofill"></path> + <line x1="52.800003" y1="31.68" x2="58.08" y2="42.24" class="solid"></line> + <path d="M 52.800003,42.24 A 10.56,10.56 0,0,0 52.800003,52.800003" class="nofill"></path> + <line x1="52.800003" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <path d="M 58.08,42.24 A 10.56,10.56 0,0,1 58.08,52.800003" class="nofill"></path> + <line x1="55.440002" y1="52.800003" x2="55.440002" y2="66" class="solid"></line> + </g> + <g> + <path d="M 68.64,21.12 A 10.56,10.56 0,0,0 68.64,31.68" class="nofill"></path> + <path d="M 68.64,31.68 A 10.56,10.56 0,0,1 68.64,42.24" class="nofill"></path> + </g> <g> <path d="M 5.28,31.68 A 10.56,10.56 0,0,0 5.28,42.24" class="nofill"></path> <path d="M 5.28,42.24 A 10.56,10.56 0,0,1 5.28,52.800003" class="nofill"></path> @@ -131,8 +168,38 @@ <g> <path d="M 36.960003,31.68 A 10.56,10.56 0,0,0 36.960003,42.24" class="nofill"></path> <line x1="36.960003" y1="42.24" x2="42.24" y2="52.800003" class="solid"></line> + </g> + <g> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,1 47.52,42.24" class="nofill"></path> + <path d="M 47.52,42.24 A 10.56,10.56 0,0,0 47.52,52.800003" class="nofill"></path> + </g> + <g> + <path d="M 63.36,31.68 A 10.56,10.56 0,0,0 63.36,42.24" class="nofill"></path> + <path d="M 63.36,31.68 A 10.56,10.56 0,0,1 63.36,42.24" class="nofill"></path> + <line x1="63.36" y1="42.24" x2="68.64" y2="52.800003" class="solid"></line> + <path d="M 63.36,52.800003 A 10.56,10.56 0,0,0 63.36,63.36" class="nofill"></path> + <line x1="63.36" y1="63.36" x2="68.64" y2="63.36" class="solid"></line> + <path d="M 68.64,52.800003 A 10.56,10.56 0,0,1 68.64,63.36" class="nofill"></path> + </g> + <g> + <path d="M 84.48,31.68 A 10.56,10.56 0,0,0 84.48,42.24" class="nofill"></path> + <line x1="84.48" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <path d="M 84.48,52.800003 A 10.56,10.56 0,0,0 84.48,63.36" class="nofill"></path> + <line x1="84.48" y1="63.36" x2="89.76" y2="63.36" class="solid"></line> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,1 89.76,63.36" class="nofill"></path> + <line x1="79.200005" y1="73.920006" x2="87.12" y2="73.920006" class="solid"></line> + <line x1="87.12" y1="63.36" x2="87.12" y2="84.48" class="solid"></line> + <line x1="58.08" y1="84.48" x2="87.12" y2="84.48" class="solid"></line> + <line x1="71.28001" y1="73.920006" x2="71.28001" y2="84.48" class="solid"></line> + </g> + <g> + <path d="M 79.200005,42.24 A 10.56,10.56 0,0,1 79.200005,52.800003" class="nofill"></path> + <path d="M 79.200005,52.800003 A 10.56,10.56 0,0,0 79.200005,63.36" class="nofill"></path> + </g> + <g> <path d="M 36.960003,52.800003 A 10.56,10.56 0,0,0 36.960003,63.36" class="nofill"></path> - <line x1="36.960003" y1="63.36" x2="42.24" y2="63.36" class="solid"></line> - <path d="M 42.24,52.800003 A 10.56,10.56 0,0,1 42.24,63.36" class="nofill"></path> + <line x1="36.960003" y1="63.36" x2="44.88" y2="63.36" class="solid"></line> + <line x1="44.88" y1="63.36" x2="44.88" y2="84.48" class="solid"></line> + <line x1="44.88" y1="84.48" x2="52.800003" y2="84.48" class="solid"></line> </g> </svg> diff --git a/static/db/jave/effect/flowerpower.flf b/static/db/jave/block/flowerpower.flf similarity index 100% rename from static/db/jave/effect/flowerpower.flf rename to static/db/jave/block/flowerpower.flf diff --git a/static/db/jave/block/flowerpower.svg b/static/db/jave/block/flowerpower.svg new file mode 100644 index 0000000000000000000000000000000000000000..18358899b97856cd2d7d8ece880f8e58a50195cd --- /dev/null +++ b/static/db/jave/block/flowerpower.svg @@ -0,0 +1,290 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="195.36" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="195.36" height="105.600006"></rect> + <line x1="63.36" y1="10.56" x2="100.32001" y2="10.56" class="solid"></line> + <text x="11.88" y="18.480001" >'</text> + <text x="43.56" y="18.480001" >`</text> + <text x="22.44" y="29.04" >'</text> + <text x="128.04001" y="29.04" >|</text> + <text x="138.6" y="29.04" >,</text> + <text x="59.4" y="39.600002" >|</text> + <line x1="110.880005" y1="31.68" x2="105.600006" y2="42.24" class="solid"></line> + <text x="117.48" y="39.600002" >,</text> + <line x1="137.28" y1="31.68" x2="132" y2="42.24" class="solid"></line> + <text x="149.16" y="39.600002" >)</text> + <text x="33" y="50.160004" >`</text> + <text x="101.64001" y="50.160004" >'</text> + <line x1="116.16" y1="42.24" x2="121.44" y2="52.800003" class="solid"></line> + <text x="133.32" y="50.160004" >'</text> + <text x="149.16" y="50.160004" >'`</text> + <path d="M 158.40001,42.24 A 10.56,10.56 0,0,1 158.40001,52.800003" class="nofill"></path> + <line x1="2.64" y1="60.72" x2="2.64" y2="73.920006" class="solid"></line> + <text x="6.6000004" y="60.72" >'</text> + <text x="85.8" y="60.72" >'</text> + <text x="122.76" y="60.72" >></text> + <text x="159.72" y="60.72" >)</text> + <text x="80.520004" y="71.28001" >{;}</text> + <text x="133.32" y="71.28001" >.</text> + <text x="159.72" y="71.28001" >'</text> + <line x1="0" y1="73.920006" x2="5.28" y2="84.48" class="solid"></line> + <text x="27.720001" y="81.840004" >o</text> + <line x1="60.72" y1="73.920006" x2="60.72" y2="84.48" class="solid"></line> + <text x="85.8" y="81.840004" >,</text> + <text x="138.6" y="81.840004" >`</text> + <text x="6.6000004" y="92.4" >'.</text> + <text x="27.720001" y="92.4" >,</text> + <text x="43.56" y="92.4" >.</text> + <text x="101.64001" y="92.4" >.</text> + <text x="133.32" y="92.4" >`.</text> + <text x="170.28001" y="92.4" >.</text> + <g> + <line x1="15.84" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> + <path d="M 15.84,10.56 A 21.12,21.12 0,0,0 5.28,21.12" class="nofill"></path> + <line x1="5.28" y1="21.12" x2="2.64" y2="26.400002" class="solid"></line> + <line x1="2.64" y1="26.400002" x2="2.64" y2="42.24" class="solid"></line> + <line x1="2.64" y1="42.24" x2="23.76" y2="42.24" class="solid"></line> + <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="10.56" x2="174.24" y2="10.56" class="solid"></line> + <line x1="137.28" y1="10.56" x2="132" y2="21.12" class="solid"></line> + <line x1="174.24" y1="10.56" x2="179.52" y2="21.12" class="solid"></line> + <line x1="153.12001" y1="21.12" x2="163.68001" y2="21.12" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="168.96" y2="31.68" class="solid"></line> + <line x1="168.96" y1="31.68" x2="179.52" y2="31.68" class="solid"></line> + <path d="M 179.52,21.12 A 10.56,10.56 0,0,1 179.52,31.68" class="nofill"></path> + <line x1="142.56001" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="153.12001" y1="21.12" x2="147.84001" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="26.400002" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> + <line x1="36.960003" y1="21.12" x2="42.24" y2="31.68" class="solid"></line> + <line x1="42.24" y1="31.68" x2="36.960003" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 42.24,10.56 A 21.12,21.12 0,0,1 52.800003,21.12" class="nofill"></path> + <line x1="52.800003" y1="21.12" x2="55.440002" y2="26.400002" class="solid"></line> + <line x1="55.440002" y1="26.400002" x2="55.440002" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="10.56" x2="60.72" y2="15.84" class="solid"></line> + <line x1="60.72" y1="15.84" x2="60.72" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="71.28001" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="71.28001" y1="21.12" x2="71.28001" y2="42.24" class="solid"></line> + <line x1="95.04" y1="21.12" x2="100.32001" y2="31.68" class="solid"></line> + <line x1="71.28001" y1="42.24" x2="95.04" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="31.68" x2="95.04" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="10.56" x2="108.240005" y2="15.84" class="solid"></line> + <line x1="108.240005" y1="15.84" x2="108.240005" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="36.960003" x2="129.36" y2="36.960003" class="solid"></line> + <path d="M 129.36,36.960003 A 5.28,5.28 0,0,1 134.64,42.24" class="nofill"></path> + </g> + <g> + <line x1="15.84" y1="52.800003" x2="21.12" y2="52.800003" class="solid"></line> + <line x1="26.400002" y1="47.52" x2="21.12" y2="52.800003" class="solid"></line> + <line x1="26.400002" y1="47.52" x2="31.68" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="60.72" y1="42.24" x2="60.72" y2="68.64" class="solid"></line> + <line x1="60.72" y1="68.64" x2="52.800003" y2="84.48" class="solid"></line> + <path d="M 52.800003,84.48 A 21.12,21.12 0,0,1 42.24,95.04" class="nofill"></path> + </g> + <g> + <line x1="79.200005" y1="52.800003" x2="84.48" y2="52.800003" class="solid"></line> + <path d="M 79.200005,52.800003 A 10.56,10.56 0,0,0 79.200005,63.36" class="nofill"></path> + </g> + <g> + <line x1="89.76" y1="52.800003" x2="95.04" y2="52.800003" class="solid"></line> + <path d="M 95.04,52.800003 A 10.56,10.56 0,0,1 95.04,63.36" class="nofill"></path> + </g> + <g> + <path d="M 100.32001,42.24 A 21.12,21.12 0,0,1 110.880005,52.800003" class="nofill"></path> + <line x1="110.880005" y1="52.800003" x2="113.520004" y2="58.08" class="solid"></line> + <line x1="113.520004" y1="58.08" x2="113.520004" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="52.800003" x2="142.56001" y2="52.800003" class="solid"></line> + <path d="M 137.28,52.800003 A 10.56,10.56 0,0,0 137.28,63.36" class="nofill"></path> + <line x1="137.28" y1="63.36" x2="142.56001" y2="63.36" class="solid"></line> + <path d="M 142.56001,52.800003 A 10.56,10.56 0,0,1 142.56001,63.36" class="nofill"></path> + </g> + <g> + <line x1="26.400002" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> + <path d="M 26.400002,63.36 A 10.56,10.56 0,0,0 26.400002,73.920006" class="nofill"></path> + <path d="M 31.68,63.36 A 10.56,10.56 0,0,1 31.68,73.920006" class="nofill"></path> + </g> + <g> + <line x1="174.24" y1="63.36" x2="184.8" y2="63.36" class="solid"></line> + <path d="M 184.8,63.36 A 10.56,10.56 0,0,1 184.8,73.920006" class="nofill"></path> + <line x1="184.8" y1="73.920006" x2="179.52" y2="84.48" class="solid"></line> + <line x1="163.68001" y1="73.920006" x2="168.96" y2="73.920006" class="solid"></line> + <line x1="174.24" y1="63.36" x2="168.96" y2="73.920006" class="solid"></line> + <line x1="142.56001" y1="95.04" x2="168.96" y2="95.04" class="solid"></line> + <path d="M 179.52,84.48 A 21.12,21.12 0,0,1 168.96,95.04" class="nofill"></path> + </g> + <g> + <line x1="15.84" y1="73.920006" x2="21.12" y2="73.920006" class="solid"></line> + <path d="M 15.84,73.920006 A 10.56,10.56 0,0,0 15.84,84.48" class="nofill"></path> + <line x1="15.84" y1="84.48" x2="21.12" y2="84.48" class="solid"></line> + <path d="M 21.12,84.48 A 10.56,10.56 0,0,0 21.12,95.04" class="nofill"></path> + <line x1="21.12" y1="95.04" x2="26.400002" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="36.960003" y1="73.920006" x2="42.24" y2="73.920006" class="solid"></line> + <line x1="36.960003" y1="84.48" x2="42.24" y2="84.48" class="solid"></line> + <path d="M 42.24,73.920006 A 10.56,10.56 0,0,1 42.24,84.48" class="nofill"></path> + <line x1="31.68" y1="95.04" x2="36.960003" y2="95.04" class="solid"></line> + <path d="M 36.960003,84.48 A 10.56,10.56 0,0,1 36.960003,95.04" class="nofill"></path> + </g> + <g> + <path d="M 73.920006,63.36 A 10.56,10.56 0,0,0 73.920006,73.920006" class="nofill"></path> + <line x1="73.920006" y1="73.920006" x2="79.200005" y2="73.920006" class="solid"></line> + <path d="M 79.200005,73.920006 A 10.56,10.56 0,0,0 79.200005,84.48" class="nofill"></path> + <line x1="79.200005" y1="84.48" x2="84.48" y2="84.48" class="solid"></line> + </g> + <g> + <line x1="95.04" y1="73.920006" x2="100.32001" y2="73.920006" class="solid"></line> + <path d="M 100.32001,63.36 A 10.56,10.56 0,0,1 100.32001,73.920006" class="nofill"></path> + <line x1="89.76" y1="84.48" x2="95.04" y2="84.48" class="solid"></line> + <path d="M 95.04,73.920006 A 10.56,10.56 0,0,1 95.04,84.48" class="nofill"></path> + </g> + <g> + <path d="M 121.44,63.36 A 10.56,10.56 0,0,0 121.44,73.920006" class="nofill"></path> + <line x1="121.44" y1="73.920006" x2="122.76" y2="76.560005" class="solid"></line> + <path d="M 122.76,76.560005 A 5.28,5.28 0,0,0 126.72,79.200005" class="nofill"></path> + <line x1="126.72" y1="79.200005" x2="132" y2="79.200005" class="solid"></line> + <line x1="134.64" y1="73.920006" x2="134.64" y2="76.560005" class="solid"></line> + <path d="M 134.64,76.560005 A 2.64,2.64 0,0,1 132,79.200005" class="nofill"></path> + </g> + <g> + <path d="M 153.12001,68.64 A 2.64,2.64 0,0,0 150.48001,71.28001" class="nofill"></path> + <line x1="150.48001" y1="71.28001" x2="150.48001" y2="76.560005" class="solid"></line> + <line x1="153.12001" y1="68.64" x2="158.40001" y2="68.64" class="solid"></line> + <line x1="142.56001" y1="79.200005" x2="147.84001" y2="79.200005" class="solid"></line> + <path d="M 150.48001,76.560005 A 2.64,2.64 0,0,1 147.84001,79.200005" class="nofill"></path> + </g> + <g> + <line x1="116.16" y1="73.920006" x2="110.880005" y2="84.48" class="solid"></line> + <line x1="63.36" y1="84.48" x2="58.08" y2="95.04" class="solid"></line> + <line x1="58.08" y1="95.04" x2="100.32001" y2="95.04" class="solid"></line> + <path d="M 110.880005,84.48 A 21.12,21.12 0,0,1 100.32001,95.04" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/effect/ghost.flf b/static/db/jave/block/ghost.flf similarity index 100% rename from static/db/jave/effect/ghost.flf rename to static/db/jave/block/ghost.flf diff --git a/static/db/jave/block/ghost.svg b/static/db/jave/block/ghost.svg new file mode 100644 index 0000000000000000000000000000000000000000..387227a70552f9a9c5fb5051cb1e97a6515d0aba --- /dev/null +++ b/static/db/jave/block/ghost.svg @@ -0,0 +1,271 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="174.24" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="174.24" height="105.600006"></rect> + <rect x="76.560005" y="36.960003" width="10.559998" height="10.559998" class="solid nofill" rx="2.64"></rect> + <path d="M 21.12,0 A 10.56,10.56 0,0,0 21.12,10.56" class="nofill"></path> + <text x="22.44" y="7.92" >'</text> + <text x="59.4" y="7.92" >.</text> + <line x1="63.36" y1="5.28" x2="68.64" y2="5.28" class="solid"></line> + <text x="69.96" y="7.92" >.</text> + <text x="91.08" y="7.92" >'</text> + <path d="M 95.04,0 A 10.56,10.56 0,0,1 95.04,10.56" class="nofill"></path> + <text x="22.44" y="18.480001" >OO</text> + <text x="43.56" y="18.480001" >.</text> + <line x1="47.52" y1="15.84" x2="52.800003" y2="15.84" class="solid"></line> + <text x="54.120003" y="18.480001" >.</text> + <line x1="58.08" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <text x="85.8" y="18.480001" >OO</text> + <text x="22.44" y="29.04" >.</text> + <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> + <text x="64.68" y="29.04" >;</text> + <text x="159.72" y="29.04" >.</text> + <text x="122.76" y="39.600002" >'</text> + <text x="154.44" y="39.600002" >.</text> + <line x1="163.68001" y1="31.68" x2="158.40001" y2="42.24" class="solid"></line> + <text x="22.44" y="50.160004" >'</text> + <text x="54.120003" y="50.160004" >|</text> + <path d="M 147.84001,42.24 A 10.56,10.56 0,0,0 147.84001,52.800003" class="nofill"></path> + <text x="149.16" y="50.160004" >'</text> + <line x1="13.200001" y1="52.800003" x2="13.200001" y2="63.36" class="solid"></line> + <text x="33" y="60.72" >.</text> + <text x="96.36" y="60.72" >`.</text> + <text x="143.88" y="60.72" >OO</text> + <text x="11.88" y="71.28001" >|</text> + <line x1="108.240005" y1="63.36" x2="108.240005" y2="73.920006" class="solid"></line> + <text x="143.88" y="71.28001" >`</text> + <line x1="147.84001" y1="68.64" x2="153.12001" y2="68.64" class="solid"></line> + <text x="154.44" y="71.28001" >'</text> + <text x="91.08" y="81.840004" >'</text> + <line x1="158.40001" y1="73.920006" x2="163.68001" y2="84.48" class="solid"></line> + <text x="128.04001" y="92.4" >`</text> + <line x1="132" y1="89.76" x2="158.40001" y2="89.76" class="solid"></line> + <text x="159.72" y="92.4" >'</text> + <g> + <line x1="26.400002" y1="5.28" x2="31.68" y2="5.28" class="solid"></line> + <path d="M 31.68,5.28 A 5.28,5.28 0,0,1 35.640003,7.92" class="nofill"></path> + <line x1="35.640003" y1="7.92" x2="36.960003" y2="10.56" class="solid"></line> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,1 36.960003,21.12" class="nofill"></path> + </g> + <g> + <path d="M 84.48,5.28 A 5.28,5.28 0,0,0 80.520004,7.92" class="nofill"></path> + <line x1="80.520004" y1="7.92" x2="79.200005" y2="10.56" class="solid"></line> + <line x1="84.48" y1="5.28" x2="89.76" y2="5.28" class="solid"></line> + <path d="M 79.200005,10.56 A 10.56,10.56 0,0,0 79.200005,21.12" class="nofill"></path> + </g> + <g> + <path d="M 15.84,10.56 A 10.56,10.56 0,0,0 15.84,21.12" class="nofill"></path> + <line x1="15.84" y1="21.12" x2="13.200001" y2="26.400002" class="solid"></line> + <line x1="13.200001" y1="26.400002" x2="13.200001" y2="44.88" class="solid"></line> + <path d="M 5.28,47.52 A 1.98,1.98 0,0,0 3.96,50.160004" class="nofill"></path> + <line x1="3.96" y1="50.160004" x2="10.56" y2="63.36" class="solid"></line> + <line x1="5.28" y1="47.52" x2="10.56" y2="47.52" class="solid"></line> + <path d="M 13.200001,44.88 A 2.64,2.64 0,0,1 10.56,47.52" class="nofill"></path> + <path d="M 13.200001,44.88 A 2.64,2.64 0,0,0 15.84,47.52" class="nofill"></path> + <line x1="15.84" y1="47.52" x2="21.12" y2="47.52" class="solid"></line> + </g> + <g> + <path d="M 100.32001,10.56 A 10.56,10.56 0,0,1 100.32001,21.12" class="nofill"></path> + <line x1="100.32001" y1="21.12" x2="102.96001" y2="26.400002" class="solid"></line> + <line x1="102.96001" y1="26.400002" x2="102.96001" y2="36.960003" class="solid"></line> + <line x1="102.96001" y1="36.960003" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="105.600006" y2="52.800003" class="solid"></line> + <path d="M 105.600006,42.24 A 10.56,10.56 0,0,1 105.600006,52.800003" class="nofill"></path> + </g> + <g> + <line x1="31.68" y1="26.400002" x2="42.24" y2="26.400002" class="solid"></line> + <line x1="44.88" y1="21.12" x2="44.88" y2="23.76" class="solid"></line> + <path d="M 44.88,23.76 A 10.56,10.56 0,0,0 46.2,29.04" class="nofill"></path> + <path d="M 42.24,26.400002 A 5.28,5.28 0,0,1 46.2,29.04" class="nofill"></path> + <line x1="46.2" y1="29.04" x2="52.800003" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="68.64" y1="26.400002" x2="97.68" y2="26.400002" class="solid"></line> + <path d="M 97.68,26.400002 A 5.28,5.28 0,0,1 102.96001,31.68" class="nofill"></path> + </g> + <g> + <path d="M 129.36,26.400002 A 5.28,5.28 0,0,0 124.08,31.68" class="nofill"></path> + <line x1="129.36" y1="26.400002" x2="158.40001" y2="26.400002" class="solid"></line> + </g> + <g> + <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> + <line x1="23.76" y1="36.960003" x2="34.32" y2="36.960003" class="solid"></line> + <path d="M 34.32,36.960003 A 5.28,5.28 0,0,1 39.600002,42.24" class="nofill"></path> + <line x1="39.600002" y1="42.24" x2="39.600002" y2="55.440002" class="solid"></line> + </g> + <g> + <line x1="66" y1="31.68" x2="66" y2="87.12" class="solid"></line> + <path d="M 66,87.12 A 2.64,2.64 0,0,0 68.64,89.76" class="nofill"></path> + <line x1="68.64" y1="89.76" x2="100.32001" y2="89.76" class="solid"></line> + <line x1="110.880005" y1="73.920006" x2="104.28001" y2="87.12" class="solid"></line> + <path d="M 104.28001,87.12 A 5.28,5.28 0,0,1 100.32001,89.76" class="nofill"></path> + </g> + <g> + <path d="M 142.56001,36.960003 A 2.64,2.64 0,0,0 139.92,39.600002" class="nofill"></path> + <line x1="139.92" y1="39.600002" x2="139.92" y2="76.560005" class="solid"></line> + <line x1="142.56001" y1="36.960003" x2="153.12001" y2="36.960003" class="solid"></line> + <path d="M 139.92,76.560005 A 2.64,2.64 0,0,0 142.56001,79.200005" class="nofill"></path> + <line x1="142.56001" y1="79.200005" x2="155.76001" y2="79.200005" class="solid"></line> + <line x1="161.04001" y1="63.36" x2="161.04001" y2="73.920006" class="solid"></line> + <path d="M 161.04001,73.920006 A 5.28,5.28 0,0,1 155.76001,79.200005" class="nofill"></path> + </g> + <g> + <line x1="124.08" y1="42.24" x2="124.08" y2="47.52" class="solid"></line> + <line x1="124.08" y1="47.52" x2="118.8" y2="58.08" class="solid"></line> + <line x1="118.8" y1="58.08" x2="118.8" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="153.12001" y1="47.52" x2="158.40001" y2="47.52" class="solid"></line> + <path d="M 158.40001,47.52 A 5.28,5.28 0,0,1 162.36,50.160004" class="nofill"></path> + <line x1="162.36" y1="50.160004" x2="163.68001" y2="52.800003" class="solid"></line> + <path d="M 163.68001,52.800003 A 10.56,10.56 0,0,1 163.68001,63.36" class="nofill"></path> + </g> + <g> + <line x1="23.76" y1="52.800003" x2="23.76" y2="63.36" class="solid"></line> + <line x1="23.76" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="55.440002" y1="52.800003" x2="55.440002" y2="87.12" class="solid"></line> + <path d="M 31.68,68.64 A 2.64,2.64 0,0,0 29.04,71.28001" class="nofill"></path> + <line x1="29.04" y1="71.28001" x2="29.04" y2="87.12" class="solid"></line> + <line x1="31.68" y1="68.64" x2="36.960003" y2="68.64" class="solid"></line> + <path d="M 36.960003,68.64 A 2.64,2.64 0,0,1 39.600002,71.28001" class="nofill"></path> + <line x1="39.600002" y1="71.28001" x2="39.600002" y2="87.12" class="solid"></line> + <path d="M 39.600002,87.12 A 2.64,2.64 0,0,0 42.24,89.76" class="nofill"></path> + <line x1="42.24" y1="89.76" x2="52.800003" y2="89.76" class="solid"></line> + <path d="M 55.440002,87.12 A 2.64,2.64 0,0,1 52.800003,89.76" class="nofill"></path> + <line x1="13.200001" y1="73.920006" x2="13.200001" y2="87.12" class="solid"></line> + <path d="M 13.200001,87.12 A 2.64,2.64 0,0,0 15.84,89.76" class="nofill"></path> + <line x1="15.84" y1="89.76" x2="26.400002" y2="89.76" class="solid"></line> + <path d="M 29.04,87.12 A 2.64,2.64 0,0,1 26.400002,89.76" class="nofill"></path> + </g> + <g> + <path d="M 79.200005,58.08 A 2.64,2.64 0,0,0 76.560005,60.72" class="nofill"></path> + <line x1="76.560005" y1="60.72" x2="76.560005" y2="76.560005" class="solid"></line> + <line x1="79.200005" y1="58.08" x2="84.48" y2="58.08" class="solid"></line> + <path d="M 84.48,58.08 A 5.28,5.28 0,0,1 88.44,60.72" class="nofill"></path> + <line x1="88.44" y1="60.72" x2="95.04" y2="73.920006" class="solid"></line> + <path d="M 76.560005,76.560005 A 2.64,2.64 0,0,0 79.200005,79.200005" class="nofill"></path> + <line x1="79.200005" y1="79.200005" x2="89.76" y2="79.200005" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="63.36" x2="126.72" y2="63.36" class="solid"></line> + <path d="M 126.72,52.800003 A 10.56,10.56 0,0,1 126.72,63.36" class="nofill"></path> + <line x1="124.08" y1="63.36" x2="124.08" y2="76.560005" class="solid"></line> + </g> + <g> + <path d="M 116.16,73.920006 A 10.56,10.56 0,0,0 116.16,84.48" class="nofill"></path> + <line x1="116.16" y1="84.48" x2="121.44" y2="84.48" class="solid"></line> + </g> +</svg> diff --git a/static/db/jave/block/ghoulish.svg b/static/db/jave/block/ghoulish.svg index 6c3a8bdf4913aa870fba9d678dabd46757a48101..74d502d8c460db79017c8af280fcec273a81cd57 100644 --- a/static/db/jave/block/ghoulish.svg +++ b/static/db/jave/block/ghoulish.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="73.920006"></rect> <line x1="21.12" y1="0" x2="15.84" y2="10.56" class="solid"></line> <text x="22.44" y="7.92" >`</text> <text x="11.88" y="18.480001" >'</text> @@ -106,6 +123,34 @@ <text x="17.16" y="50.160004" >,'</text> <line x1="15.84" y1="52.800003" x2="10.56" y2="63.36" class="solid"></line> <path d="M 36.960003,52.800003 A 10.56,10.56 0,0,1 36.960003,63.36" class="nofill"></path> + <line x1="73.920006" y1="0" x2="68.64" y2="10.56" class="solid"></line> + <path d="M 79.200005,0 A 10.56,10.56 0,0,0 79.200005,10.56" class="nofill"></path> + <text x="80.520004" y="7.92" >,</text> + <text x="64.68" y="18.480001" >'</text> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <text x="69.96" y="29.04" >'</text> + <line x1="73.920006" y1="26.400002" x2="79.200005" y2="26.400002" class="solid"></line> + <text x="80.520004" y="29.04" >'</text> + <line x1="73.920006" y1="42.24" x2="79.200005" y2="42.24" class="solid"></line> + <text x="69.96" y="50.160004" >'</text> + <line x1="73.920006" y1="47.52" x2="79.200005" y2="47.52" class="solid"></line> + <text x="80.520004" y="50.160004" >'</text> + <line x1="68.64" y1="52.800003" x2="63.36" y2="63.36" class="solid"></line> + <text x="69.96" y="60.72" >.</text> + <text x="80.520004" y="60.72" >.</text> + <line x1="126.72" y1="0" x2="132" y2="10.56" class="solid"></line> + <text x="133.32" y="7.92" >.</text> + <text x="128.04001" y="18.480001" >,</text> + <line x1="132" y1="15.84" x2="137.28" y2="15.84" class="solid"></line> + <text x="138.6" y="18.480001" >,</text> + <text x="122.76" y="29.04" >.</text> + <text x="122.76" y="39.600002" >'..'</text> + <text x="122.76" y="50.160004" >,</text> + <path d="M 145.20001,42.24 A 7.92,7.92 0,0,0 145.20001,52.800003" class="nofill"></path> + <line x1="121.44" y1="52.800003" x2="116.16" y2="63.36" class="solid"></line> + <text x="122.76" y="60.72" >'.</text> + <line x1="132" y1="63.36" x2="137.28" y2="63.36" class="solid"></line> + <text x="138.6" y="60.72" >.'</text> <g> <line x1="26.400002" y1="5.28" x2="31.68" y2="5.28" class="solid"></line> <path d="M 31.68,5.28 A 5.28,5.28 0,0,1 35.640003,7.92" class="nofill"></path> @@ -127,4 +172,45 @@ <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <path d="M 31.68,42.24 A 10.56,10.56 0,0,1 31.68,52.800003" class="nofill"></path> </g> + <g> + <line x1="84.48" y1="5.28" x2="89.76" y2="5.28" class="solid"></line> + <path d="M 89.76,5.28 A 5.28,5.28 0,0,1 93.72,7.92" class="nofill"></path> + <line x1="93.72" y1="7.92" x2="95.04" y2="10.56" class="solid"></line> + <path d="M 95.04,10.56 A 10.56,10.56 0,0,1 95.04,21.12" class="nofill"></path> + <path d="M 95.04,21.12 A 10.56,10.56 0,0,0 95.04,31.68" class="nofill"></path> + <path d="M 95.04,31.68 A 10.56,10.56 0,0,1 95.04,42.24" class="nofill"></path> + <line x1="95.04" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="63.36" x2="79.200005" y2="63.36" class="solid"></line> + <path d="M 89.76,52.800003 A 21.12,21.12 0,0,1 79.200005,63.36" class="nofill"></path> + </g> + <g> + <path d="M 63.36,15.84 A 5.28,5.28 0,0,0 59.4,18.480001" class="nofill"></path> + <line x1="59.4" y1="18.480001" x2="58.08" y2="21.12" class="solid"></line> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <path d="M 58.08,31.68 A 10.56,10.56 0,0,1 58.08,42.24" class="nofill"></path> + <path d="M 58.08,42.24 A 10.56,10.56 0,0,0 58.08,52.800003" class="nofill"></path> + <path d="M 58.08,52.800003 A 10.56,10.56 0,0,1 58.08,63.36" class="nofill"></path> + </g> + <g> + <path d="M 121.44,0 A 10.56,10.56 0,0,1 121.44,10.56" class="nofill"></path> + <line x1="121.44" y1="10.56" x2="120.12" y2="13.200001" class="solid"></line> + <path d="M 116.16,15.84 A 5.28,5.28 0,0,0 112.200005,18.480001" class="nofill"></path> + <line x1="112.200005" y1="18.480001" x2="110.880005" y2="21.12" class="solid"></line> + <path d="M 120.12,13.200001 A 5.28,5.28 0,0,1 116.16,15.84" class="nofill"></path> + <path d="M 110.880005,21.12 A 10.56,10.56 0,0,0 110.880005,31.68" class="nofill"></path> + <path d="M 110.880005,31.68 A 10.56,10.56 0,0,1 110.880005,42.24" class="nofill"></path> + <path d="M 110.880005,42.24 A 10.56,10.56 0,0,0 110.880005,52.800003" class="nofill"></path> + <path d="M 110.880005,52.800003 A 10.56,10.56 0,0,1 110.880005,63.36" class="nofill"></path> + </g> + <g> + <line x1="137.28" y1="5.28" x2="142.56001" y2="5.28" class="solid"></line> + <path d="M 142.56001,5.28 A 5.28,5.28 0,0,1 146.52,7.92" class="nofill"></path> + <line x1="146.52" y1="7.92" x2="147.84001" y2="10.56" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="147.84001" y2="21.12" class="solid"></line> + <path d="M 147.84001,10.56 A 10.56,10.56 0,0,1 147.84001,21.12" class="nofill"></path> + </g> + <g> + <line x1="142.56001" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <path d="M 147.84001,31.68 A 10.56,10.56 0,0,1 147.84001,42.24" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/block/glenyn.svg b/static/db/jave/block/glenyn.svg index c72fca649859303dbbba0ed742a71438bc2073af..19fafb82749f89c31b9c17734cf09e86284ffd49 100644 --- a/static/db/jave/block/glenyn.svg +++ b/static/db/jave/block/glenyn.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,34 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="84.48" height="52.800003"></rect> + <text x="38.280003" y="18.480001" >.</text> <text x="11.88" y="29.04" >.</text> + <text x="38.280003" y="29.04" >.<</text> <g> <line x1="0" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="42.24" class="solid"></line> <line x1="15.84" y1="10.56" x2="26.400002" y2="31.68" class="solid"></line> + <line x1="26.400002" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="26.400002" class="solid"></line> + <line x1="42.24" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> + <line x1="29.04" y1="26.400002" x2="21.12" y2="42.24" class="solid"></line> <line x1="10.56" y1="31.68" x2="5.28" y2="42.24" class="solid"></line> <line x1="10.56" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> <line x1="15.84" y1="42.24" x2="21.12" y2="42.24" class="solid"></line> - <line x1="26.400002" y1="31.68" x2="21.12" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="52.800003" y1="10.56" x2="73.920006" y2="10.56" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="26.400002" class="solid"></line> + <line x1="55.440002" y1="26.400002" x2="47.52" y2="42.24" class="solid"></line> + <line x1="29.04" y1="42.24" x2="47.52" y2="42.24" class="solid"></line> + <line x1="63.36" y1="21.12" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="63.36" y1="21.12" x2="68.64" y2="31.68" class="solid"></line> + <line x1="68.64" y1="31.68" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="47.52" y1="31.68" x2="55.440002" y2="31.68" class="solid"></line> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="42.24" class="solid"></line> + <line x1="55.440002" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="73.920006" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/jave/block/jacky.svg b/static/db/jave/block/jacky.svg index 308c1fdf881ab9165e94d4b8a7217fd739d9668e..42056c6d097d50f5484aef57cbdfb634b36a73c3 100644 --- a/static/db/jave/block/jacky.svg +++ b/static/db/jave/block/jacky.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="84.48"></rect> <g> <line x1="15.84" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> <path d="M 15.84,10.56 A 10.56,10.56 0,0,0 15.84,21.12" class="nofill"></path> @@ -124,4 +141,51 @@ <path d="M 21.12,63.36 A 10.56,10.56 0,0,0 21.12,73.920006" class="nofill"></path> <path d="M 31.68,63.36 A 10.56,10.56 0,0,1 31.68,73.920006" class="nofill"></path> </g> + <g> + <line x1="63.36" y1="10.56" x2="95.04" y2="10.56" class="solid"></line> + <path d="M 63.36,10.56 A 10.56,10.56 0,0,0 63.36,21.12" class="nofill"></path> + <line x1="63.36" y1="21.12" x2="68.64" y2="21.12" class="solid"></line> + <line x1="95.04" y1="10.56" x2="100.32001" y2="21.12" class="solid"></line> + <path d="M 68.64,21.12 A 10.56,10.56 0,0,1 68.64,31.68" class="nofill"></path> + <path d="M 100.32001,21.12 A 10.56,10.56 0,0,1 100.32001,31.68" class="nofill"></path> + <line x1="68.64" y1="31.68" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="42.24" x2="68.64" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="42.24" x2="95.04" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="31.68" x2="95.04" y2="42.24" class="solid"></line> + <line x1="95.04" y1="42.24" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + <line x1="63.36" y1="63.36" x2="68.64" y2="63.36" class="solid"></line> + <path d="M 68.64,52.800003 A 10.56,10.56 0,0,1 68.64,63.36" class="nofill"></path> + <path d="M 63.36,63.36 A 10.56,10.56 0,0,0 63.36,73.920006" class="nofill"></path> + <line x1="63.36" y1="73.920006" x2="95.04" y2="73.920006" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="95.04" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="84.48" y1="21.12" x2="89.76" y2="21.12" class="solid"></line> + <path d="M 84.48,21.12 A 10.56,10.56 0,0,0 84.48,31.68" class="nofill"></path> + <line x1="84.48" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <path d="M 89.76,21.12 A 10.56,10.56 0,0,1 89.76,31.68" class="nofill"></path> + </g> + <g> + <line x1="84.48" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <path d="M 84.48,52.800003 A 10.56,10.56 0,0,0 84.48,63.36" class="nofill"></path> + <line x1="84.48" y1="63.36" x2="89.76" y2="63.36" class="solid"></line> + <path d="M 89.76,52.800003 A 10.56,10.56 0,0,1 89.76,63.36" class="nofill"></path> + </g> + <g> + <line x1="126.72" y1="10.56" x2="147.84001" y2="10.56" class="solid"></line> + <line x1="126.72" y1="10.56" x2="116.16" y2="31.68" class="solid"></line> + <path d="M 116.16,31.68 A 10.56,10.56 0,0,0 116.16,42.24" class="nofill"></path> + <path d="M 116.16,42.24 A 10.56,10.56 0,0,0 116.16,52.800003" class="nofill"></path> + <line x1="116.16" y1="52.800003" x2="126.72" y2="73.920006" class="solid"></line> + <line x1="126.72" y1="73.920006" x2="147.84001" y2="73.920006" class="solid"></line> + <line x1="132" y1="21.12" x2="147.84001" y2="21.12" class="solid"></line> + <path d="M 147.84001,10.56 A 10.56,10.56 0,0,1 147.84001,21.12" class="nofill"></path> + <line x1="132" y1="21.12" x2="126.72" y2="31.68" class="solid"></line> + <path d="M 126.72,31.68 A 10.56,10.56 0,0,0 126.72,42.24" class="nofill"></path> + <path d="M 126.72,42.24 A 10.56,10.56 0,0,0 126.72,52.800003" class="nofill"></path> + <line x1="126.72" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + <line x1="132" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <path d="M 147.84001,63.36 A 10.56,10.56 0,0,1 147.84001,73.920006" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/effect/lildevil.flf b/static/db/jave/block/lildevil.flf similarity index 100% rename from static/db/jave/effect/lildevil.flf rename to static/db/jave/block/lildevil.flf diff --git a/static/db/jave/block/lildevil.svg b/static/db/jave/block/lildevil.svg new file mode 100644 index 0000000000000000000000000000000000000000..a8b19a8f49c45a55844f6ac20c44080e32585aaa --- /dev/null +++ b/static/db/jave/block/lildevil.svg @@ -0,0 +1,267 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="158.40001" height="95.04"></rect> + <rect x="66" y="36.960003" width="10.560005" height="10.559998" class="solid nofill" rx="2.64"></rect> + <text x="11.88" y="7.92" >`</text> + <line x1="15.84" y1="5.28" x2="21.12" y2="5.28" class="solid"></line> + <text x="22.44" y="7.92" >'</text> + <polygon points="58.08,2.64 52.800003,5.28 58.08,7.92" class="filled"></polygon> + <line x1="58.08" y1="5.28" x2="63.36" y2="5.28" class="solid"></line> + <text x="64.68" y="7.92" >.</text> + <text x="75.240005" y="7.92" >`</text> + <line x1="79.200005" y1="5.28" x2="84.48" y2="5.28" class="solid"></line> + <text x="85.8" y="7.92" >'</text> + <line x1="11.88" y1="18.480001" x2="13.200001" y2="15.84" class="solid end_marked_big_open_circle"></line> + <text x="17.16" y="18.480001" >O</text> + <text x="33" y="18.480001" >.</text> + <text x="80.520004" y="18.480001" >O</text> + <line x1="88.44" y1="18.480001" x2="87.12" y2="15.84" class="solid end_marked_big_open_circle"></line> + <text x="17.16" y="29.04" >,</text> + <text x="54.120003" y="29.04" >'</text> + <line x1="58.08" y1="26.400002" x2="63.36" y2="26.400002" class="solid"></line> + <text x="85.8" y="29.04" >.</text> + <text x="117.48" y="29.04" >,</text> + <line x1="121.44" y1="26.400002" x2="147.84001" y2="26.400002" class="solid"></line> + <text x="149.16" y="29.04" >.</text> + <text x="33" y="39.600002" >`.</text> + <path d="M 87.12,31.68 A 7.92,7.92 0,0,0 87.12,42.24" class="nofill"></path> + <text x="128.04001" y="39.600002" >.</text> + <text x="17.16" y="50.160004" >'</text> + <text x="33" y="50.160004" >.'</text> + <text x="48.84" y="50.160004" >|</text> + <text x="85.8" y="50.160004" >`.)</text> + <text x="133.32" y="50.160004" >`</text> + <path d="M 5.28,52.800003 A 10.56,10.56 0,0,0 5.28,63.36" class="nofill"></path> + <line x1="68.64" y1="52.800003" x2="63.36" y2="63.36" class="solid"></line> + <text x="69.96" y="60.72" >`'.</text> + <line x1="97.68" y1="52.800003" x2="97.68" y2="63.36" class="solid"></line> + <text x="133.32" y="60.72" >OO</text> + <text x="64.68" y="71.28001" >'</text> + <text x="117.48" y="81.840004" >`</text> + <line x1="121.44" y1="79.200005" x2="147.84001" y2="79.200005" class="solid"></line> + <text x="149.16" y="81.840004" >'</text> + <g> + <path d="M 10.56,0 A 10.56,10.56 0,0,0 10.56,10.56" class="nofill"></path> + <path d="M 10.56,10.56 A 10.56,10.56 0,0,0 10.56,21.12" class="nofill"></path> + <line x1="10.56" y1="21.12" x2="7.92" y2="26.400002" class="solid"></line> + <line x1="7.92" y1="26.400002" x2="7.92" y2="44.88" class="solid"></line> + <path d="M 7.92,44.88 A 2.64,2.64 0,0,0 10.56,47.52" class="nofill"></path> + <line x1="10.56" y1="47.52" x2="15.84" y2="47.52" class="solid"></line> + </g> + <g> + <path d="M 26.400002,0 A 10.56,10.56 0,0,1 26.400002,10.56" class="nofill"></path> + <path d="M 26.400002,10.56 A 10.56,10.56 0,0,1 26.400002,21.12" class="nofill"></path> + </g> + <g> + <line x1="42.24" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> + <line x1="36.960003" y1="15.84" x2="44.88" y2="15.84" class="solid"></line> + <line x1="47.52" y1="10.56" x2="42.24" y2="21.12" class="solid"></line> + </g> + <g> + <path d="M 73.920006,0 A 10.56,10.56 0,0,0 73.920006,10.56" class="nofill"></path> + <path d="M 73.920006,10.56 A 10.56,10.56 0,0,0 73.920006,21.12" class="nofill"></path> + </g> + <g> + <path d="M 89.76,0 A 10.56,10.56 0,0,1 89.76,10.56" class="nofill"></path> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,1 89.76,21.12" class="nofill"></path> + <line x1="89.76" y1="21.12" x2="95.04" y2="31.68" class="solid"></line> + <line x1="95.04" y1="31.68" x2="89.76" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="21.12" x2="68.64" y2="21.12" class="solid"></line> + <line x1="63.36" y1="21.12" x2="68.64" y2="26.400002" class="solid"></line> + <line x1="68.64" y1="26.400002" x2="84.48" y2="26.400002" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="21.12" x2="110.880005" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="21.12" x2="110.880005" y2="31.68" class="solid"></line> + <line x1="108.240005" y1="26.400002" x2="116.16" y2="26.400002" class="solid"></line> + </g> + <g> + <line x1="21.12" y1="26.400002" x2="36.960003" y2="26.400002" class="solid"></line> + <path d="M 36.960003,26.400002 A 5.28,5.28 0,0,1 40.920002,29.04" class="nofill"></path> + <line x1="40.920002" y1="29.04" x2="47.52" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="15.84" y1="31.68" x2="23.76" y2="47.52" class="solid"></line> + <line x1="31.68" y1="31.68" x2="23.76" y2="47.52" class="solid"></line> + <line x1="23.76" y1="47.52" x2="23.76" y2="52.800003" class="solid"></line> + <line x1="23.76" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="76.560005" class="solid"></line> + <path d="M 55.440002,76.560005 A 2.64,2.64 0,0,0 58.08,79.200005" class="nofill"></path> + <line x1="58.08" y1="79.200005" x2="89.76" y2="79.200005" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="93.72" y2="76.560005" class="solid"></line> + <path d="M 93.72,76.560005 A 5.28,5.28 0,0,1 89.76,79.200005" class="nofill"></path> + </g> + <g> + <line x1="113.520004" y1="31.68" x2="113.520004" y2="36.960003" class="solid"></line> + <line x1="113.520004" y1="36.960003" x2="108.240005" y2="47.52" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="108.240005" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="132" y1="36.960003" x2="142.56001" y2="36.960003" class="solid"></line> + <path d="M 142.56001,36.960003 A 2.64,2.64 0,0,1 145.20001,39.600002" class="nofill"></path> + <path d="M 142.56001,36.960003 A 5.28,5.28 0,0,1 146.52,39.600002" class="nofill"></path> + <line x1="145.20001" y1="39.600002" x2="145.20001" y2="44.88" class="solid"></line> + <line x1="146.52" y1="39.600002" x2="147.84001" y2="42.24" class="solid"></line> + <line x1="153.12001" y1="31.68" x2="146.52" y2="44.88" class="solid"></line> + <path d="M 147.84001,42.24 A 10.56,10.56 0,0,1 147.84001,52.800003" class="nofill"></path> + <path d="M 147.84001,52.800003 A 10.56,10.56 0,0,1 147.84001,63.36" class="nofill"></path> + <line x1="147.84001" y1="63.36" x2="146.52" y2="66" class="solid"></line> + <line x1="147.84001" y1="63.36" x2="153.12001" y2="73.920006" class="solid"></line> + <path d="M 129.36,42.24 A 7.92,7.92 0,0,0 129.36,52.800003" class="nofill"></path> + <line x1="129.36" y1="52.800003" x2="129.36" y2="66" class="solid"></line> + <path d="M 129.36,66 A 2.64,2.64 0,0,0 132,68.64" class="nofill"></path> + <line x1="132" y1="68.64" x2="142.56001" y2="68.64" class="solid"></line> + <path d="M 146.52,66 A 5.28,5.28 0,0,1 142.56001,68.64" class="nofill"></path> + <line x1="137.28" y1="47.52" x2="142.56001" y2="47.52" class="solid"></line> + <path d="M 145.20001,44.88 A 2.64,2.64 0,0,1 142.56001,47.52" class="nofill"></path> + <path d="M 146.52,44.88 A 5.28,5.28 0,0,1 142.56001,47.52" class="nofill"></path> + </g> + <g> + <line x1="105.600006" y1="52.800003" x2="116.16" y2="52.800003" class="solid"></line> + <path d="M 116.16,42.24 A 10.56,10.56 0,0,1 116.16,52.800003" class="nofill"></path> + <line x1="113.520004" y1="52.800003" x2="113.520004" y2="66" class="solid"></line> + </g> + <g> + <line x1="7.92" y1="52.800003" x2="7.92" y2="76.560005" class="solid"></line> + <path d="M 7.92,76.560005 A 2.64,2.64 0,0,0 10.56,79.200005" class="nofill"></path> + <line x1="10.56" y1="79.200005" x2="21.12" y2="79.200005" class="solid"></line> + <path d="M 26.400002,58.08 A 2.64,2.64 0,0,0 23.76,60.72" class="nofill"></path> + <line x1="23.76" y1="60.72" x2="23.76" y2="76.560005" class="solid"></line> + <line x1="26.400002" y1="58.08" x2="31.68" y2="58.08" class="solid"></line> + <path d="M 31.68,58.08 A 2.64,2.64 0,0,1 34.32,60.72" class="nofill"></path> + <line x1="34.32" y1="60.72" x2="34.32" y2="76.560005" class="solid"></line> + <path d="M 23.76,76.560005 A 2.64,2.64 0,0,1 21.12,79.200005" class="nofill"></path> + <path d="M 34.32,76.560005 A 2.64,2.64 0,0,0 36.960003,79.200005" class="nofill"></path> + <line x1="36.960003" y1="79.200005" x2="50.160004" y2="79.200005" class="solid"></line> + <path d="M 55.440002,73.920006 A 5.28,5.28 0,0,1 50.160004,79.200005" class="nofill"></path> + </g> + <g> + <line x1="50.160004" y1="52.800003" x2="50.160004" y2="76.560005" class="solid"></line> + <path d="M 50.160004,76.560005 A 2.64,2.64 0,0,1 47.52,79.200005" class="nofill"></path> + </g> + <g> + <line x1="68.64" y1="68.64" x2="79.200005" y2="68.64" class="solid"></line> + <line x1="81.840004" y1="63.36" x2="81.840004" y2="66" class="solid"></line> + <path d="M 81.840004,66 A 2.64,2.64 0,0,1 79.200005,68.64" class="nofill"></path> + </g> + <g> + <path d="M 105.600006,63.36 A 10.56,10.56 0,0,0 105.600006,73.920006" class="nofill"></path> + <line x1="105.600006" y1="73.920006" x2="110.880005" y2="73.920006" class="solid"></line> + </g> +</svg> diff --git a/static/db/jave/block/lineblocks.svg b/static/db/jave/block/lineblocks.svg index 448a05ebd31ab59158f584eecad43f90a76111ff..84a616880139fea9bb92bca0e94cb9b678ac0b4b 100644 --- a/static/db/jave/block/lineblocks.svg +++ b/static/db/jave/block/lineblocks.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="137.28" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="137.28" height="52.800003"></rect> + <rect x="97.68" y="10.56" width="34.32" height="31.68" class="solid nofill" rx="0"></rect> + <text x="85.8" y="29.04" ><</text> <g> <line x1="2.64" y1="10.56" x2="39.600002" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="42.24" class="solid"></line> @@ -106,4 +125,14 @@ <line x1="2.64" y1="42.24" x2="13.200001" y2="42.24" class="solid"></line> <line x1="29.04" y1="42.24" x2="39.600002" y2="42.24" class="solid"></line> </g> + <g> + <line x1="50.160004" y1="10.56" x2="84.48" y2="10.56" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="42.24" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="42.24" class="solid"></line> + <line x1="76.560005" y1="10.56" x2="76.560005" y2="42.24" class="solid"></line> + <line x1="84.48" y1="10.56" x2="89.76" y2="21.12" class="solid"></line> + <line x1="60.72" y1="26.400002" x2="76.560005" y2="26.400002" class="solid"></line> + <line x1="50.160004" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/block/merlin1.svg b/static/db/jave/block/merlin1.svg index 30232f0003b626c8758442ebf0db947b1e037bef..357d39437e49b0b88606147388679551a874c3b7 100644 --- a/static/db/jave/block/merlin1.svg +++ b/static/db/jave/block/merlin1.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="184.8" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,12 +112,22 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="184.8" height="84.48"></rect> + <text x="165" y="18.480001" >"</text> + <line x1="81.840004" y1="29.04" x2="81.840004" y2="63.36" class="broken"></line> + <text x="117.48" y="29.04" >:</text> + <text x="133.32" y="29.04" >:</text> <text x="22.44" y="39.600002" >'</text> <line x1="21.12" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> <text x="43.56" y="50.160004" >'</text> + <line x1="110.880005" y1="42.24" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="142.56001" y1="42.24" x2="137.28" y2="52.800003" class="solid"></line> <line x1="47.52" y1="52.800003" x2="52.800003" y2="63.36" class="solid"></line> + <text x="117.48" y="60.72" >:</text> + <text x="133.32" y="60.72" >:</text> + <text x="75.240005" y="71.28001" >(</text> <text x="33" y="18.480001" ></text> + <text x="112.200005" y="18.480001" >\ /</text> <g> <line x1="31.68" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="5.28" y2="63.36" class="solid"></line> @@ -113,8 +140,63 @@ <line x1="52.800003" y1="73.920006" x2="68.64" y2="73.920006" class="solid"></line> <path d="M 68.64,63.36 A 10.56,10.56 0,0,1 68.64,73.920006" class="nofill"></path> </g> + <g> + <line x1="76.560005" y1="10.56" x2="116.16" y2="10.56" class="solid"></line> + <line x1="76.560005" y1="10.56" x2="76.560005" y2="21.12" class="solid"></line> + <path d="M 76.560005,21.12 A 7.92,7.92 0,0,0 76.560005,31.68" class="nofill"></path> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="42.24" class="solid"></line> + <path d="M 76.560005,42.24 A 7.92,7.92 0,0,0 76.560005,52.800003" class="nofill"></path> + <line x1="76.560005" y1="52.800003" x2="76.560005" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="10.56" x2="168.96" y2="10.56" class="solid"></line> + <line x1="168.96" y1="10.56" x2="174.24" y2="21.12" class="solid"></line> + <line x1="147.84001" y1="21.12" x2="153.12001" y2="21.12" class="solid"></line> + <path d="M 147.84001,21.12 A 10.56,10.56 0,0,0 147.84001,31.68" class="nofill"></path> + <line x1="153.12001" y1="21.12" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="158.40001" y1="31.68" x2="174.24" y2="31.68" class="solid"></line> + <path d="M 174.24,21.12 A 10.56,10.56 0,0,1 174.24,31.68" class="nofill"></path> + <line x1="147.84001" y1="31.68" x2="158.40001" y2="52.800003" class="solid"></line> + <line x1="153.12001" y1="63.36" x2="158.40001" y2="63.36" class="solid"></line> + <path d="M 158.40001,52.800003 A 10.56,10.56 0,0,1 158.40001,63.36" class="nofill"></path> + </g> + <g> + <line x1="92.4" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="92.4" y1="21.12" x2="92.4" y2="31.68" class="solid"></line> + <line x1="92.4" y1="31.68" x2="100.32001" y2="31.68" class="solid"></line> + <path d="M 100.32001,21.12 A 10.56,10.56 0,0,1 100.32001,31.68" class="nofill"></path> + </g> + <g> + <path d="M 121.44,21.12 A 10.56,10.56 0,0,1 121.44,31.68" class="nofill"></path> + <line x1="110.880005" y1="31.68" x2="121.44" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="31.68" x2="116.16" y2="42.24" class="solid"></line> + <line x1="118.8" y1="47.52" x2="118.8" y2="52.800003" class="solid"></line> + <path d="M 121.44,52.800003 A 10.56,10.56 0,0,1 121.44,63.36" class="nofill"></path> + <line x1="79.200005" y1="73.920006" x2="116.16" y2="73.920006" class="solid"></line> + <line x1="121.44" y1="63.36" x2="116.16" y2="73.920006" class="solid"></line> + </g> + <g> + <path d="M 132,21.12 A 10.56,10.56 0,0,0 132,31.68" class="nofill"></path> + <line x1="132" y1="31.68" x2="137.28" y2="42.24" class="solid"></line> + <line x1="142.56001" y1="31.68" x2="134.64" y2="47.52" class="solid"></line> + <line x1="134.64" y1="47.52" x2="134.64" y2="52.800003" class="solid"></line> + </g> <g> <line x1="36.960003" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> <line x1="36.960003" y1="31.68" x2="42.24" y2="42.24" class="solid"></line> </g> + <g> + <line x1="92.4" y1="52.800003" x2="100.32001" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="52.800003" x2="92.4" y2="63.36" class="solid"></line> + <line x1="92.4" y1="63.36" x2="100.32001" y2="63.36" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + </g> + <g> + <line x1="163.68001" y1="52.800003" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="52.800003" x2="174.24" y2="63.36" class="solid"></line> + <path d="M 132,52.800003 A 10.56,10.56 0,0,0 132,63.36" class="nofill"></path> + <line x1="132" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> + <line x1="137.28" y1="73.920006" x2="174.24" y2="73.920006" class="solid"></line> + <path d="M 174.24,63.36 A 10.56,10.56 0,0,1 174.24,73.920006" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/block/merlin2.svg b/static/db/jave/block/merlin2.svg index 63bf86cb69f334f89f7e80476c20493c38eda100..da70f79e3561a0f70b817b88a19146f5c2bfaab7 100644 --- a/static/db/jave/block/merlin2.svg +++ b/static/db/jave/block/merlin2.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="163.68001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,14 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="163.68001" height="84.48"></rect> + <path d="M 100.32001,21.12 A 10.56,10.56 0,0,1 100.32001,31.68" class="nofill"></path> + <text x="64.68" y="39.600002" >.</text> <text x="6.6000004" y="50.160004" >:.</text> + <line x1="52.800003" y1="42.24" x2="36.960003" y2="73.920006" class="solid"></line> + <text x="54.120003" y="50.160004" >:</text> + <text x="64.68" y="50.160004" >.</text> + <text x="112.200005" y="50.160004" >:.</text> <g> <line x1="21.12" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="26.400002" y1="10.56" x2="31.68" y2="21.12" class="solid"></line> @@ -111,10 +134,51 @@ <line x1="21.12" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> <path d="M 42.24,21.12 A 10.56,10.56 0,0,1 42.24,31.68" class="nofill"></path> <line x1="31.68" y1="31.68" x2="42.24" y2="52.800003" class="solid"></line> - <line x1="36.960003" y1="31.68" x2="47.52" y2="52.800003" class="solid"></line> + <line x1="36.960003" y1="31.68" x2="58.08" y2="73.920006" class="solid"></line> <line x1="42.24" y1="52.800003" x2="31.68" y2="73.920006" class="solid"></line> - <line x1="47.52" y1="52.800003" x2="36.960003" y2="73.920006" class="solid"></line> <line x1="26.400002" y1="63.36" x2="31.68" y2="73.920006" class="solid"></line> + <line x1="68.64" y1="10.56" x2="73.920006" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="52.800003" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + <line x1="68.64" y1="10.56" x2="73.920006" y2="21.12" class="solid"></line> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,0 52.800003,31.68" class="nofill"></path> + <line x1="52.800003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="55.440002" y2="36.960003" class="solid"></line> + <line x1="55.440002" y1="36.960003" x2="55.440002" y2="42.24" class="solid"></line> + <line x1="84.48" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> + <path d="M 95.04,21.12 A 10.56,10.56 0,0,1 95.04,31.68" class="nofill"></path> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="95.04" y1="31.68" x2="89.76" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="89.76" y2="63.36" class="solid"></line> + <line x1="63.36" y1="63.36" x2="84.48" y2="63.36" class="solid"></line> + <line x1="89.76" y1="52.800003" x2="84.48" y2="63.36" class="solid"></line> + <line x1="63.36" y1="63.36" x2="58.08" y2="73.920006" class="solid"></line> + <line x1="68.64" y1="63.36" x2="63.36" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="10.56" x2="132" y2="10.56" class="solid"></line> + <line x1="132" y1="10.56" x2="137.28" y2="21.12" class="solid"></line> + <line x1="137.28" y1="21.12" x2="153.12001" y2="21.12" class="solid"></line> + <path d="M 153.12001,21.12 A 10.56,10.56 0,0,1 153.12001,31.68" class="nofill"></path> + <line x1="110.880005" y1="21.12" x2="121.44" y2="21.12" class="solid"></line> + <line x1="126.72" y1="10.56" x2="121.44" y2="21.12" class="solid"></line> + <line x1="126.72" y1="10.56" x2="132" y2="21.12" class="solid"></line> + <path d="M 110.880005,21.12 A 10.56,10.56 0,0,0 110.880005,31.68" class="nofill"></path> + <line x1="110.880005" y1="31.68" x2="116.16" y2="31.68" class="solid"></line> + <line x1="116.16" y1="31.68" x2="113.520004" y2="36.960003" class="solid"></line> + <line x1="113.520004" y1="36.960003" x2="113.520004" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <path d="M 147.84001,21.12 A 10.56,10.56 0,0,1 147.84001,31.68" class="nofill"></path> + <line x1="129.36" y1="31.68" x2="129.36" y2="52.800003" class="solid"></line> + <line x1="134.64" y1="31.68" x2="134.64" y2="52.800003" class="solid"></line> + <line x1="134.64" y1="52.800003" x2="153.12001" y2="52.800003" class="solid"></line> + <path d="M 153.12001,52.800003 A 10.56,10.56 0,0,1 153.12001,63.36" class="nofill"></path> </g> <g> <line x1="21.12" y1="42.24" x2="26.400002" y2="42.24" class="solid"></line> @@ -122,6 +186,16 @@ <line x1="15.84" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> <line x1="26.400002" y1="42.24" x2="31.68" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="68.64" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> + <path d="M 73.920006,31.68 A 10.56,10.56 0,0,1 73.920006,42.24" class="nofill"></path> + <line x1="68.64" y1="52.800003" x2="73.920006" y2="52.800003" class="solid"></line> + <path d="M 73.920006,42.24 A 10.56,10.56 0,0,1 73.920006,52.800003" class="nofill"></path> + </g> + <g> + <path d="M 79.200005,31.68 A 10.56,10.56 0,0,1 79.200005,42.24" class="nofill"></path> + <path d="M 79.200005,42.24 A 10.56,10.56 0,0,1 79.200005,52.800003" class="nofill"></path> + </g> <g> <line x1="5.28" y1="42.24" x2="0" y2="52.800003" class="solid"></line> <line x1="0" y1="52.800003" x2="10.56" y2="73.920006" class="solid"></line> @@ -129,4 +203,12 @@ <line x1="15.84" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> <line x1="21.12" y1="63.36" x2="15.84" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="110.880005" y1="42.24" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="52.800003" x2="116.16" y2="73.920006" class="solid"></line> + <line x1="121.44" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <path d="M 147.84001,52.800003 A 10.56,10.56 0,0,1 147.84001,63.36" class="nofill"></path> + <line x1="121.44" y1="63.36" x2="116.16" y2="73.920006" class="solid"></line> + <line x1="126.72" y1="63.36" x2="121.44" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/block/modular.svg b/static/db/jave/block/modular.svg index ee3565368b896aa4828e371e699e315d30d473da..a038422ca52cb410f4ecf135be31900225bf11b9 100644 --- a/static/db/jave/block/modular.svg +++ b/static/db/jave/block/modular.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="147.84001" height="84.48"></rect> <rect x="18.480001" y="21.12" width="10.559999" height="10.559999" class="solid nofill" rx="0"></rect> + <rect x="60.72" y="21.12" width="10.560005" height="10.559999" class="solid nofill" rx="0"></rect> + <rect x="60.72" y="52.800003" width="10.560005" height="10.559998" class="solid nofill" rx="0"></rect> + <line x1="87.12" y1="42.24" x2="87.12" y2="52.800003" class="solid"></line> <g> <line x1="2.64" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="73.920006" class="solid"></line> @@ -107,4 +127,21 @@ <line x1="29.04" y1="63.36" x2="29.04" y2="73.920006" class="solid"></line> <line x1="29.04" y1="73.920006" x2="44.88" y2="73.920006" class="solid"></line> </g> + <g> + <line x1="50.160004" y1="10.56" x2="92.4" y2="10.56" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="73.920006" class="solid"></line> + <line x1="92.4" y1="10.56" x2="92.4" y2="42.24" class="solid"></line> + <line x1="92.4" y1="52.800003" x2="92.4" y2="73.920006" class="solid"></line> + <line x1="50.160004" y1="73.920006" x2="92.4" y2="73.920006" class="solid"></line> + </g> + <g> + <line x1="97.68" y1="10.56" x2="139.92" y2="10.56" class="solid"></line> + <line x1="97.68" y1="10.56" x2="97.68" y2="73.920006" class="solid"></line> + <line x1="139.92" y1="10.56" x2="139.92" y2="52.800003" class="solid"></line> + <line x1="129.36" y1="52.800003" x2="139.92" y2="52.800003" class="solid"></line> + <line x1="129.36" y1="52.800003" x2="129.36" y2="63.36" class="solid"></line> + <line x1="129.36" y1="63.36" x2="139.92" y2="63.36" class="solid"></line> + <line x1="97.68" y1="73.920006" x2="139.92" y2="73.920006" class="solid"></line> + <line x1="139.92" y1="63.36" x2="139.92" y2="73.920006" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/effect/rammstein.flf b/static/db/jave/block/rammstein.flf similarity index 100% rename from static/db/jave/effect/rammstein.flf rename to static/db/jave/block/rammstein.flf diff --git a/static/db/jave/effect/rammstein.svg b/static/db/jave/block/rammstein.svg similarity index 67% rename from static/db/jave/effect/rammstein.svg rename to static/db/jave/block/rammstein.svg index eca6fe12c988f9f053bf584acabbcdd61a811ec0..0675bde075494b8a212114474c1d22d55b5fded3 100644 --- a/static/db/jave/effect/rammstein.svg +++ b/static/db/jave/block/rammstein.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="73.920006" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="73.920006"></rect> + <text x="106.920006" y="29.04" >></text> + <text x="101.64001" y="39.600002" ><</text> + <text x="106.920006" y="50.160004" >></text> <g> <line x1="18.480001" y1="10.56" x2="50.160004" y2="10.56" class="solid"></line> <line x1="50.160004" y1="10.56" x2="50.160004" y2="21.12" class="solid"></line> @@ -113,4 +133,19 @@ <line x1="21.12" y1="42.24" x2="26.400002" y2="52.800003" class="solid"></line> <line x1="26.400002" y1="52.800003" x2="42.24" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="71.28001" y1="21.12" x2="105.600006" y2="21.12" class="solid"></line> + <line x1="71.28001" y1="21.12" x2="71.28001" y2="52.800003" class="solid"></line> + <line x1="71.28001" y1="52.800003" x2="105.600006" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="113.520004" y1="21.12" x2="150.48001" y2="21.12" class="solid"></line> + <line x1="113.520004" y1="21.12" x2="113.520004" y2="52.800003" class="solid"></line> + <line x1="113.520004" y1="52.800003" x2="150.48001" y2="52.800003" class="solid"></line> + <line x1="132" y1="31.68" x2="150.48001" y2="31.68" class="solid"></line> + <line x1="150.48001" y1="21.12" x2="150.48001" y2="31.68" class="solid"></line> + <line x1="134.64" y1="31.68" x2="134.64" y2="42.24" class="solid"></line> + <line x1="134.64" y1="42.24" x2="150.48001" y2="42.24" class="solid"></line> + <line x1="150.48001" y1="42.24" x2="150.48001" y2="52.800003" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/block/red_phoenix.svg b/static/db/jave/block/red_phoenix.svg index 85f94f1c6cba6a7f2ab7d828c48ba5111b9229af..095f47ddfc1f432dd416e520c38d1160771a5724 100644 --- a/static/db/jave/block/red_phoenix.svg +++ b/static/db/jave/block/red_phoenix.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="73.920006"></rect> + <text x="69.96" y="29.04" >|</text> + <text x="149.16" y="50.160004" >></text> <g> <line x1="15.84" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> <line x1="15.84" y1="10.56" x2="0" y2="42.24" class="solid"></line> @@ -110,4 +129,35 @@ <line x1="5.28" y1="52.800003" x2="42.24" y2="52.800003" class="solid"></line> <line x1="42.24" y1="52.800003" x2="47.52" y2="63.36" class="solid"></line> </g> + <g> + <line x1="63.36" y1="10.56" x2="81.840004" y2="10.56" class="solid"></line> + <line x1="81.840004" y1="7.92" x2="81.840004" y2="21.12" class="solid"></line> + <line x1="63.36" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <line x1="68.64" y1="21.12" x2="73.920006" y2="21.12" class="solid"></line> + <line x1="81.840004" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="95.04" y1="21.12" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="42.24" x2="95.04" y2="63.36" class="solid"></line> + <line x1="71.28001" y1="31.68" x2="71.28001" y2="52.800003" class="solid"></line> + <line x1="71.28001" y1="52.800003" x2="89.76" y2="52.800003" class="solid"></line> + <line x1="89.76" y1="52.800003" x2="95.04" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="79.200005" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="95.04" y2="42.24" class="solid"></line> + <line x1="89.76" y1="31.68" x2="95.04" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="21.12" x2="142.56001" y2="21.12" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="116.16" y2="31.68" class="solid"></line> + <line x1="121.44" y1="21.12" x2="116.16" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="121.44" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="52.800003" x2="137.28" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="147.84001" y1="52.800003" x2="142.56001" y2="63.36" class="solid"></line> + <line x1="126.72" y1="31.68" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="21.12" x2="147.84001" y2="31.68" class="solid"></line> + <line x1="126.72" y1="31.68" x2="132" y2="42.24" class="solid"></line> + <line x1="132" y1="42.24" x2="147.84001" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/block/smallcaps.svg b/static/db/jave/block/smallcaps.svg index 74fad50868d6d6bf1adb7e79b645e8ffaefa9159..1618458e9ff48b4eb6705348ccb438a4a752fa7c 100644 --- a/static/db/jave/block/smallcaps.svg +++ b/static/db/jave/block/smallcaps.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,13 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="95.04" height="52.800003"></rect> <path d="M 0,31.68 A 10.56,10.56 0,0,1 0,42.24" class="nofill"></path> - <path d="M 36.960003,31.68 A 10.56,10.56 0,0,0 36.960003,42.24" class="nofill"></path> + <text x="54.120003" y="39.600002" >o</text> + <line x1="79.200005" y1="21.12" x2="84.48" y2="21.12" class="solid"></line> + <path d="M 73.920006,21.12 A 10.56,10.56 0,0,1 73.920006,31.68" class="nofill"></path> + <line x1="79.200005" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + <path d="M 89.76,31.68 A 10.56,10.56 0,0,0 89.76,42.24" class="nofill"></path> <g> <line x1="15.84" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="15.84" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> @@ -106,13 +127,37 @@ <line x1="5.28" y1="42.24" x2="10.56" y2="42.24" class="solid"></line> <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> </g> + <g> + <line x1="42.24" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="52.800003" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <path d="M 58.08,10.56 A 10.56,10.56 0,0,1 58.08,21.12" class="nofill"></path> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <path d="M 58.08,31.68 A 10.56,10.56 0,0,1 58.08,42.24" class="nofill"></path> + </g> <g> <path d="M 10.56,10.56 A 10.56,10.56 0,0,1 10.56,21.12" class="nofill"></path> <line x1="10.56" y1="21.12" x2="5.28" y2="31.68" class="solid"></line> </g> + <g> + <line x1="36.960003" y1="10.56" x2="39.600002" y2="15.84" class="solid"></line> + <line x1="39.600002" y1="15.84" x2="39.600002" y2="31.68" class="solid"></line> + </g> <g> <path d="M 21.12,21.12 A 10.56,10.56 0,0,1 21.12,31.68" class="nofill"></path> <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> </g> + <g> + <path d="M 36.960003,31.68 A 10.56,10.56 0,0,0 36.960003,42.24" class="nofill"></path> + <line x1="42.24" y1="31.68" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="36.960003" y1="42.24" x2="52.800003" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="73.920006" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,0 89.76,21.12" class="nofill"></path> + <path d="M 68.64,21.12 A 10.56,10.56 0,0,1 68.64,31.68" class="nofill"></path> + <line x1="68.64" y1="31.68" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/block/soft.svg b/static/db/jave/block/soft.svg index 41fc4e50ec8b242ea35420132e0842a869a35bd4..041dea653bb46a68b044f89d27c75436e21ca701 100644 --- a/static/db/jave/block/soft.svg +++ b/static/db/jave/block/soft.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="121.44" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,15 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="121.44" height="73.920006"></rect> + <rect x="60.72" y="36.960003" width="10.560005" height="10.559998" class="solid nofill" rx="2.64"></rect> <text x="22.44" y="29.04" >O</text> + <text x="91.08" y="29.04" >,</text> <text x="1.32" y="39.600002" >|</text> <text x="43.56" y="39.600002" >|</text> + <text x="80.520004" y="39.600002" >'</text> + <line x1="87.12" y1="31.68" x2="87.12" y2="42.24" class="solid"></line> + <text x="54.120003" y="60.72" >`</text> <g> <path d="M 15.84,15.84 A 5.28,5.28 0,0,0 11.88,18.480001" class="nofill"></path> <line x1="11.88" y1="18.480001" x2="5.28" y2="31.68" class="solid"></line> @@ -107,18 +129,50 @@ <line x1="35.640003" y1="18.480001" x2="42.24" y2="31.68" class="solid"></line> </g> <g> + <path d="M 52.800003,15.84 A 2.64,2.64 0,0,0 50.160004,18.480001" class="nofill"></path> + <line x1="50.160004" y1="18.480001" x2="50.160004" y2="52.800003" class="solid"></line> + <line x1="52.800003" y1="15.84" x2="63.36" y2="15.84" class="solid"></line> + <path d="M 63.36,15.84 A 2.64,2.64 0,0,1 66,18.480001" class="nofill"></path> + <line x1="66" y1="18.480001" x2="66" y2="31.68" class="solid"></line> + <line x1="66" y1="26.400002" x2="76.560005" y2="26.400002" class="solid"></line> + <path d="M 76.560005,26.400002 A 5.28,5.28 0,0,1 81.840004,31.68" class="nofill"></path> <path d="M 21.12,36.960003 A 2.64,2.64 0,0,0 18.480001,39.600002" class="nofill"></path> <line x1="18.480001" y1="39.600002" x2="18.480001" y2="55.440002" class="solid"></line> <line x1="21.12" y1="36.960003" x2="26.400002" y2="36.960003" class="solid"></line> <path d="M 26.400002,36.960003 A 2.64,2.64 0,0,1 29.04,39.600002" class="nofill"></path> <line x1="29.04" y1="39.600002" x2="29.04" y2="55.440002" class="solid"></line> <path d="M 29.04,55.440002 A 2.64,2.64 0,0,0 31.68,58.08" class="nofill"></path> - <line x1="31.68" y1="58.08" x2="42.24" y2="58.08" class="solid"></line> + <line x1="31.68" y1="58.08" x2="44.88" y2="58.08" class="solid"></line> + <path d="M 50.160004,52.800003 A 5.28,5.28 0,0,1 44.88,58.08" class="nofill"></path> <line x1="2.64" y1="42.24" x2="2.64" y2="55.440002" class="solid"></line> <path d="M 2.64,55.440002 A 2.64,2.64 0,0,0 5.28,58.08" class="nofill"></path> <line x1="5.28" y1="58.08" x2="15.84" y2="58.08" class="solid"></line> <path d="M 18.480001,55.440002 A 2.64,2.64 0,0,1 15.84,58.08" class="nofill"></path> + </g> + <g> + <line x1="95.04" y1="26.400002" x2="110.880005" y2="26.400002" class="solid"></line> + <path d="M 110.880005,26.400002 A 2.64,2.64 0,0,1 113.520004,29.04" class="nofill"></path> + <line x1="113.520004" y1="29.04" x2="113.520004" y2="34.32" class="solid"></line> + <path d="M 100.32001,36.960003 A 2.64,2.64 0,0,0 97.68,39.600002" class="nofill"></path> + <line x1="97.68" y1="39.600002" x2="97.68" y2="44.88" class="solid"></line> + <line x1="100.32001" y1="36.960003" x2="110.880005" y2="36.960003" class="solid"></line> + <path d="M 113.520004,34.32 A 2.64,2.64 0,0,1 110.880005,36.960003" class="nofill"></path> + <path d="M 97.68,44.88 A 2.64,2.64 0,0,0 100.32001,47.52" class="nofill"></path> + <line x1="100.32001" y1="47.52" x2="110.880005" y2="47.52" class="solid"></line> + <path d="M 110.880005,47.52 A 2.64,2.64 0,0,1 113.520004,50.160004" class="nofill"></path> + <line x1="113.520004" y1="50.160004" x2="113.520004" y2="55.440002" class="solid"></line> + <line x1="84.48" y1="42.24" x2="91.08" y2="55.440002" class="solid"></line> + <path d="M 91.08,55.440002 A 5.28,5.28 0,0,0 95.04,58.08" class="nofill"></path> + <line x1="95.04" y1="58.08" x2="110.880005" y2="58.08" class="solid"></line> + <path d="M 113.520004,55.440002 A 2.64,2.64 0,0,1 110.880005,58.08" class="nofill"></path> + </g> + <g> <line x1="44.88" y1="42.24" x2="44.88" y2="55.440002" class="solid"></line> <path d="M 44.88,55.440002 A 2.64,2.64 0,0,1 42.24,58.08" class="nofill"></path> </g> + <g> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="58.08" x2="76.560005" y2="58.08" class="solid"></line> + <path d="M 81.840004,52.800003 A 5.28,5.28 0,0,1 76.560005,58.08" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/block/spliff.svg b/static/db/jave/block/spliff.svg index 35379616586ec436e5541e9ba5874be9624e97a2..6577e27e27b15d8b98f3a55cfb8994d0ca70e9b6 100644 --- a/static/db/jave/block/spliff.svg +++ b/static/db/jave/block/spliff.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,20 +112,40 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="52.800003"></rect> <line x1="15.84" y1="21.12" x2="21.12" y2="21.12" class="solid"></line> + <line x1="52.800003" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <text x="69.96" y="29.04" ><</text> <g> <line x1="5.28" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> <line x1="5.28" y1="10.56" x2="2.64" y2="15.84" class="solid"></line> <line x1="2.64" y1="15.84" x2="2.64" y2="31.68" class="solid"></line> <line x1="31.68" y1="10.56" x2="34.32" y2="15.84" class="solid"></line> - <line x1="34.32" y1="15.84" x2="34.32" y2="31.68" class="solid"></line> + <line x1="34.32" y1="15.84" x2="34.32" y2="26.400002" class="solid"></line> + <line x1="34.32" y1="26.400002" x2="42.24" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="79.200005" y1="10.56" x2="76.560005" y2="15.84" class="solid"></line> + <line x1="76.560005" y1="15.84" x2="76.560005" y2="26.400002" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="108.240005" y2="15.84" class="solid"></line> + <line x1="108.240005" y1="15.84" x2="108.240005" y2="31.68" class="solid"></line> + <line x1="76.560005" y1="26.400002" x2="68.64" y2="42.24" class="solid"></line> + <line x1="42.24" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="92.4" y1="21.12" x2="92.4" y2="31.68" class="solid"></line> + <line x1="92.4" y1="26.400002" x2="108.240005" y2="26.400002" class="solid"></line> </g> <g> + <line x1="42.24" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <line x1="42.24" y1="10.56" x2="39.600002" y2="15.84" class="solid"></line> + <line x1="39.600002" y1="15.84" x2="39.600002" y2="26.400002" class="solid"></line> + <line x1="68.64" y1="10.56" x2="73.920006" y2="21.12" class="solid"></line> + <line x1="39.600002" y1="26.400002" x2="31.68" y2="42.24" class="solid"></line> <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="0" y1="31.68" x2="5.28" y2="42.24" class="solid"></line> <line x1="5.28" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> <line x1="18.480001" y1="31.68" x2="18.480001" y2="42.24" class="solid"></line> - <line x1="36.960003" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/jave/block/stforek.svg b/static/db/jave/block/stforek.svg index de60584318c8f6b793a3eb00393eb742f8b43a8b..f4cf798cfa46bcf4b6f36132480d69938288e584 100644 --- a/static/db/jave/block/stforek.svg +++ b/static/db/jave/block/stforek.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="73.920006" height="52.800003"></rect> <text x="1.32" y="29.04" >|</text> <text x="27.720001" y="29.04" >|</text> <g> @@ -103,14 +120,34 @@ <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> <line x1="21.12" y1="10.56" x2="26.400002" y2="21.12" class="solid"></line> </g> + <g> + <line x1="29.04" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="21.12" class="solid"></line> + <line x1="42.24" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> + <line x1="52.800003" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <line x1="52.800003" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> + <line x1="58.08" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <line x1="68.64" y1="10.56" x2="63.36" y2="21.12" class="solid"></line> + </g> <g> <line x1="15.84" y1="21.12" x2="13.200001" y2="26.400002" class="solid"></line> <line x1="13.200001" y1="26.400002" x2="13.200001" y2="42.24" class="solid"></line> <line x1="15.84" y1="21.12" x2="18.480001" y2="26.400002" class="solid"></line> <line x1="18.480001" y1="26.400002" x2="18.480001" y2="42.24" class="solid"></line> - <line x1="18.480001" y1="42.24" x2="29.04" y2="42.24" class="solid"></line> + <line x1="18.480001" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> <line x1="29.04" y1="31.68" x2="29.04" y2="42.24" class="solid"></line> + <line x1="47.52" y1="31.68" x2="42.24" y2="42.24" class="solid"></line> + <line x1="47.52" y1="31.68" x2="52.800003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="21.12" x2="58.08" y2="31.68" class="solid"></line> + <line x1="58.08" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <line x1="68.64" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> <line x1="2.64" y1="31.68" x2="2.64" y2="42.24" class="solid"></line> <line x1="2.64" y1="42.24" x2="13.200001" y2="42.24" class="solid"></line> </g> + <g> + <line x1="36.960003" y1="26.400002" x2="42.24" y2="26.400002" class="solid"></line> + <line x1="47.52" y1="23.76" x2="42.24" y2="26.400002" class="solid"></line> + <line x1="42.24" y1="26.400002" x2="47.52" y2="29.04" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/block/sweet.svg b/static/db/jave/block/sweet.svg index ebaf1bb39e11c4f85060c9bb9bbc919eed3c1165..5788dfd412e21da7ffd4079961d365fb51c5693f 100644 --- a/static/db/jave/block/sweet.svg +++ b/static/db/jave/block/sweet.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,16 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="126.72"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="126.72"></rect> + <line x1="55.440002" y1="21.12" x2="55.440002" y2="97.68" class="solid"></line> + <line x1="66" y1="21.12" x2="66" y2="31.68" class="solid"></line> + <text x="91.08" y="50.160004" >|</text> + <line x1="92.4" y1="52.800003" x2="92.4" y2="95.04" class="solid"></line> + <text x="64.68" y="102.96001" >`</text> + <text x="85.8" y="102.96001" >;</text> + <text x="59.4" y="113.520004" >`.</text> + <line x1="68.64" y1="116.16" x2="79.200005" y2="116.16" class="solid"></line> + <text x="80.520004" y="113.520004" >.</text> <text x="17.16" y="39.600002" >.</text> <line x1="21.12" y1="36.960003" x2="26.400002" y2="36.960003" class="solid"></line> <text x="27.720001" y="39.600002" >,</text> @@ -114,6 +140,36 @@ <text x="22.44" y="113.520004" >.'</text> <line x1="31.68" y1="116.16" x2="36.960003" y2="116.16" class="solid"></line> <text x="38.280003" y="113.520004" >.</text> + <text x="101.64001" y="50.160004" >|</text> + <text x="138.6" y="50.160004" >;</text> + <line x1="102.96001" y1="52.800003" x2="102.96001" y2="97.68" class="solid"></line> + <text x="117.48" y="102.96001" >`</text> + <line x1="121.44" y1="100.32001" x2="126.72" y2="100.32001" class="solid"></line> + <line x1="139.92" y1="95.04" x2="139.92" y2="105.600006" class="solid"></line> + <text x="106.920006" y="113.520004" >`.</text> + <line x1="116.16" y1="116.16" x2="126.72" y2="116.16" class="solid"></line> + <text x="128.04001" y="113.520004" >,'</text> + <g> + <line x1="52.800003" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <path d="M 52.800003,10.56 A 10.56,10.56 0,0,0 52.800003,21.12" class="nofill"></path> + <path d="M 68.64,10.56 A 10.56,10.56 0,0,1 68.64,21.12" class="nofill"></path> + </g> + <g> + <path d="M 73.920006,26.400002 A 5.28,5.28 0,0,0 69.96,29.04" class="nofill"></path> + <line x1="69.96" y1="29.04" x2="63.36" y2="42.24" class="solid"></line> + <line x1="73.920006" y1="26.400002" x2="79.200005" y2="26.400002" class="solid"></line> + <path d="M 79.200005,26.400002 A 5.28,5.28 0,0,1 83.16,29.04" class="nofill"></path> + <line x1="83.16" y1="29.04" x2="89.76" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 71.28001,47.52 A 5.28,5.28 0,0,0 66,52.800003" class="nofill"></path> + <line x1="71.28001" y1="47.52" x2="79.200005" y2="47.52" class="solid"></line> + <path d="M 79.200005,47.52 A 2.64,2.64 0,0,1 81.840004,50.160004" class="nofill"></path> + <line x1="81.840004" y1="50.160004" x2="81.840004" y2="95.04" class="solid"></line> + <line x1="66" y1="52.800003" x2="66" y2="87.12" class="solid"></line> + <line x1="68.64" y1="100.32001" x2="76.560005" y2="100.32001" class="solid"></line> + <path d="M 81.840004,95.04 A 5.28,5.28 0,0,1 76.560005,100.32001" class="nofill"></path> + </g> <g> <path d="M 15.84,26.400002 A 5.28,5.28 0,0,0 11.88,29.04" class="nofill"></path> <line x1="11.88" y1="29.04" x2="5.28" y2="42.24" class="solid"></line> @@ -135,4 +191,30 @@ <path d="M 13.200001,97.68 A 2.64,2.64 0,0,0 15.84,100.32001" class="nofill"></path> <line x1="15.84" y1="100.32001" x2="21.12" y2="100.32001" class="solid"></line> </g> + <g> + <path d="M 116.16,26.400002 A 5.28,5.28 0,0,0 112.200005,29.04" class="nofill"></path> + <line x1="112.200005" y1="29.04" x2="105.600006" y2="42.24" class="solid"></line> + <line x1="116.16" y1="26.400002" x2="126.72" y2="26.400002" class="solid"></line> + <path d="M 126.72,26.400002 A 5.28,5.28 0,0,1 130.68001,29.04" class="nofill"></path> + <line x1="130.68001" y1="29.04" x2="137.28" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 121.44,47.52 A 2.64,2.64 0,0,0 118.8,50.160004" class="nofill"></path> + <line x1="118.8" y1="50.160004" x2="118.8" y2="87.12" class="solid"></line> + <line x1="121.44" y1="47.52" x2="126.72" y2="47.52" class="solid"></line> + </g> + <g> + <path d="M 132,47.52 A 5.28,5.28 0,0,0 128.04001,50.160004" class="nofill"></path> + <line x1="128.04001" y1="50.160004" x2="126.72" y2="52.800003" class="solid"></line> + <path d="M 126.72,52.800003 A 10.56,10.56 0,0,0 126.72,63.36" class="nofill"></path> + <line x1="126.72" y1="63.36" x2="142.56001" y2="63.36" class="solid"></line> + <path d="M 142.56001,52.800003 A 10.56,10.56 0,0,1 142.56001,63.36" class="nofill"></path> + </g> + <g> + <line x1="126.72" y1="84.48" x2="142.56001" y2="84.48" class="solid"></line> + <path d="M 126.72,84.48 A 10.56,10.56 0,0,0 126.72,95.04" class="nofill"></path> + <path d="M 142.56001,84.48 A 10.56,10.56 0,0,1 142.56001,95.04" class="nofill"></path> + <line x1="126.72" y1="95.04" x2="128.04001" y2="97.68" class="solid"></line> + <path d="M 128.04001,97.68 A 5.28,5.28 0,0,0 132,100.32001" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/block/test1.svg b/static/db/jave/block/test1.svg index a0c3d690240feb202735624c4ec01101449d46f2..02b301cd8f4128137000063fb17cd10b58b17356 100644 --- a/static/db/jave/block/test1.svg +++ b/static/db/jave/block/test1.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,15 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="52.800003"></rect> <line x1="27.720001" y1="18.480001" x2="29.04" y2="15.84" class="solid end_marked_big_open_circle"></line> + <text x="85.8" y="18.480001" >o</text> <text x="27.720001" y="29.04" >%</text> + <text x="85.8" y="29.04" >O</text> + <text x="133.32" y="29.04" >%%%%%'</text> <text x="1.32" y="39.600002" >`BB'</text> - <text x="38.280003" y="39.600002" >`BB'</text> + <text x="38.280003" y="39.600002" >`BB'`BBBBBBB</text> + <text x="112.200005" y="39.600002" >`BBBBBBBB'</text> <g> <line x1="10.56" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> @@ -107,6 +128,23 @@ <line x1="0" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> <line x1="30.36" y1="18.480001" x2="36.960003" y2="31.68" class="solid"></line> - <line x1="36.960003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <line x1="36.960003" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="55.440002" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="21.12" class="solid"></line> + <path d="M 105.600006,10.56 A 10.56,10.56 0,0,1 105.600006,21.12" class="nofill"></path> + <line x1="89.76" y1="31.68" x2="105.600006" y2="31.68" class="solid"></line> + <path d="M 105.600006,21.12 A 10.56,10.56 0,0,1 105.600006,31.68" class="nofill"></path> + <line x1="105.600006" y1="31.68" x2="104.28001" y2="34.32" class="solid"></line> + <path d="M 104.28001,34.32 A 5.28,5.28 0,0,1 100.32001,36.960003" class="nofill"></path> + </g> + <g> + <line x1="110.880005" y1="10.56" x2="163.68001" y2="10.56" class="solid"></line> + <line x1="132" y1="10.56" x2="126.72" y2="21.12" class="solid"></line> + <line x1="126.72" y1="21.12" x2="158.40001" y2="21.12" class="solid"></line> + <line x1="163.68001" y1="10.56" x2="158.40001" y2="21.12" class="solid"></line> + <line x1="110.880005" y1="31.68" x2="132" y2="31.68" class="solid"></line> + <line x1="126.72" y1="21.12" x2="132" y2="31.68" class="solid"></line> </g> </svg> diff --git a/static/db/jave/effect/train.flf b/static/db/jave/block/train.flf similarity index 100% rename from static/db/jave/effect/train.flf rename to static/db/jave/block/train.flf diff --git a/static/db/jave/block/train.svg b/static/db/jave/block/train.svg new file mode 100644 index 0000000000000000000000000000000000000000..ea091edc065685382ae22776c8042791cb493287 --- /dev/null +++ b/static/db/jave/block/train.svg @@ -0,0 +1,182 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="132" height="73.920006"></rect> + <line x1="21.12" y1="26.400002" x2="26.400002" y2="26.400002" class="solid"></line> + <line x1="63.36" y1="31.68" x2="68.64" y2="31.68" class="solid"></line> + <text x="59.4" y="39.600002" >.</text> + <text x="117.48" y="50.160004" >"</text> + <text x="48.84" y="60.72" >`</text> + <line x1="52.800003" y1="58.08" x2="58.08" y2="58.08" class="solid"></line> + <text x="59.4" y="60.72" >0</text> + <line x1="63.36" y1="58.08" x2="68.64" y2="58.08" class="solid"></line> + <text x="69.96" y="60.72" >0</text> + <text x="85.8" y="60.72" >"</text> + <text x="101.64001" y="60.72" >0</text> + <line x1="105.600006" y1="58.08" x2="110.880005" y2="58.08" class="solid"></line> + <text x="112.200005" y="60.72" >0</text> + <text x="11.88" y="50.160004" ></text> + <text x="22.44" y="50.160004" ></text> + <text x="33" y="50.160004" >|_|</text> + <text x="59.4" y="50.160004" ></text> + <text x="69.96" y="50.160004" ></text> + <text x="96.36" y="50.160004" ></text> + <text x="106.920006" y="50.160004" ></text> + <text x="1.32" y="60.72" >`-0-0-'</text> + <g> + <line x1="15.84" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> + <line x1="15.84" y1="10.56" x2="13.200001" y2="15.84" class="solid"></line> + <line x1="13.200001" y1="15.84" x2="13.200001" y2="42.24" class="solid"></line> + <line x1="31.68" y1="10.56" x2="34.32" y2="15.84" class="solid"></line> + <line x1="34.32" y1="15.84" x2="34.32" y2="42.24" class="solid"></line> + <line x1="13.200001" y1="42.24" x2="34.32" y2="42.24" class="solid"></line> + <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="0" y1="52.800003" x2="7.92" y2="52.800003" class="solid"></line> + <line x1="7.92" y1="42.24" x2="7.92" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="50.160004" y1="10.56" x2="60.72" y2="10.56" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="42.24" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="23.76" class="solid"></line> + <line x1="60.72" y1="21.12" x2="73.920006" y2="21.12" class="solid"></line> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="50.160004" y1="42.24" x2="58.08" y2="42.24" class="solid"></line> + <line x1="63.36" y1="42.24" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="73.920006" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="21.12" x2="113.520004" y2="21.12" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="95.04" y2="31.68" class="solid"></line> + <line x1="95.04" y1="31.68" x2="100.32001" y2="42.24" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="113.520004" y2="31.68" class="solid"></line> + <line x1="113.520004" y1="21.12" x2="113.520004" y2="42.24" class="solid"></line> + <line x1="100.32001" y1="42.24" x2="124.08" y2="42.24" class="solid"></line> + <line x1="124.08" y1="42.24" x2="124.08" y2="55.440002" class="solid"></line> + <line x1="116.16" y1="58.08" x2="121.44" y2="58.08" class="solid"></line> + <path d="M 124.08,55.440002 A 2.64,2.64 0,0,1 121.44,58.08" class="nofill"></path> + </g> + <g> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="55.440002" class="solid"></line> + <line x1="81.840004" y1="52.800003" x2="92.4" y2="52.800003" class="solid"></line> + <line x1="92.4" y1="42.24" x2="92.4" y2="55.440002" class="solid"></line> + <line x1="89.76" y1="52.800003" x2="95.04" y2="58.08" class="solid"></line> + <path d="M 92.4,55.440002 A 2.64,2.64 0,0,0 95.04,58.08" class="nofill"></path> + <line x1="95.04" y1="58.08" x2="100.32001" y2="58.08" class="solid"></line> + <line x1="73.920006" y1="58.08" x2="79.200005" y2="58.08" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="79.200005" y2="58.08" class="solid"></line> + <path d="M 81.840004,55.440002 A 2.64,2.64 0,0,1 79.200005,58.08" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/block/varsity.svg b/static/db/jave/block/varsity.svg index b289b3ea286e10368593344643444f4fa69914b6..790dc6d7a31c183cba888c5600cb576134b11b0c 100644 --- a/static/db/jave/block/varsity.svg +++ b/static/db/jave/block/varsity.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="163.68001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,27 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="73.920006" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="163.68001" height="73.920006"></rect> + <text x="69.96" y="18.480001" >[</text> <line x1="31.68" y1="31.68" x2="36.960003" y2="31.68" class="solid"></line> + <line x1="76.560005" y1="21.12" x2="76.560005" y2="52.800003" class="solid"></line> + <text x="106.920006" y="29.04" >.</text> + <text x="149.16" y="29.04" >.</text> + <text x="96.36" y="39.600002" >'`</text> + <text x="138.6" y="39.600002" >'`</text> + <line x1="147.84001" y1="31.68" x2="153.12001" y2="42.24" class="solid"></line> + <text x="154.44" y="39.600002" >]</text> + <text x="117.48" y="50.160004" >||</text> + <text x="149.16" y="50.160004" >.</text> + <text x="69.96" y="60.72" >[</text> + <line x1="73.920006" y1="63.36" x2="84.48" y2="63.36" class="solid"></line> + <text x="85.8" y="60.72" >;.</text> + <line x1="95.04" y1="63.36" x2="105.600006" y2="63.36" class="solid"></line> + <text x="106.920006" y="60.72" >.'</text> + <line x1="124.08" y1="52.800003" x2="124.08" y2="55.440002" class="solid"></line> + <text x="128.04001" y="60.72" >.</text> + <line x1="132" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <text x="149.16" y="60.72" >.'</text> <g> <line x1="31.68" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> <line x1="31.68" y1="10.56" x2="10.56" y2="52.800003" class="solid"></line> @@ -110,9 +146,39 @@ <line x1="39.600002" y1="63.36" x2="66" y2="63.36" class="solid"></line> <line x1="66" y1="52.800003" x2="66" y2="63.36" class="solid"></line> </g> + <g> + <line x1="73.920006" y1="10.56" x2="87.12" y2="10.56" class="solid"></line> + <line x1="87.12" y1="10.56" x2="87.12" y2="34.32" class="solid"></line> + </g> + <g> + <path d="M 92.4,26.400002 A 5.28,5.28 0,0,0 87.12,31.68" class="nofill"></path> + <line x1="92.4" y1="26.400002" x2="105.600006" y2="26.400002" class="solid"></line> + </g> + <g> + <path d="M 132,26.400002 A 5.28,5.28 0,0,0 128.04001,29.04" class="nofill"></path> + <line x1="128.04001" y1="29.04" x2="124.08" y2="36.960003" class="solid"></line> + <line x1="132" y1="26.400002" x2="147.84001" y2="26.400002" class="solid"></line> + <line x1="124.08" y1="36.960003" x2="124.08" y2="42.24" class="solid"></line> + </g> <g> <line x1="26.400002" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> <line x1="26.400002" y1="42.24" x2="21.12" y2="52.800003" class="solid"></line> <line x1="42.24" y1="42.24" x2="47.52" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="95.04" y1="31.68" x2="89.76" y2="42.24" class="solid"></line> + <line x1="89.76" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="95.04" y1="52.800003" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="105.600006" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="116.16" y1="31.68" x2="118.8" y2="36.960003" class="solid"></line> + <line x1="118.8" y1="36.960003" x2="118.8" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="31.68" x2="132" y2="42.24" class="solid"></line> + <line x1="132" y1="42.24" x2="137.28" y2="52.800003" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="147.84001" y2="52.800003" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/effect/wetletter.flf b/static/db/jave/block/wetletter.flf similarity index 100% rename from static/db/jave/effect/wetletter.flf rename to static/db/jave/block/wetletter.flf diff --git a/static/db/jave/block/wetletter.svg b/static/db/jave/block/wetletter.svg new file mode 100644 index 0000000000000000000000000000000000000000..c50f4a75aae2db7b8e162f1e6bb12be6d60d01ee --- /dev/null +++ b/static/db/jave/block/wetletter.svg @@ -0,0 +1,195 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="132" height="84.48"></rect> + <text x="96.36" y="7.92" >,</text> + <line x1="100.32001" y1="5.28" x2="110.880005" y2="5.28" class="solid"></line> + <text x="112.200005" y="7.92" >,</text> + <line x1="87.12" y1="18.480001" x2="87.12" y2="31.68" class="solid"></line> + <text x="91.08" y="18.480001" >'</text> + <line x1="102.96001" y1="18.480001" x2="102.96001" y2="31.68" class="solid"></line> + <text x="106.920006" y="18.480001" >'</text> + <text x="43.56" y="39.600002" >|</text> + <path d="M 31.68,42.24 A 10.56,10.56 0,0,1 31.68,52.800003" class="nofill"></path> + <line x1="44.88" y1="42.24" x2="44.88" y2="52.800003" class="solid"></line> + <text x="59.4" y="50.160004" >`</text> + <text x="27.720001" y="60.72" >(</text> + <line x1="31.68" y1="63.36" x2="36.960003" y2="63.36" class="solid"></line> + <text x="38.280003" y="60.72" >)</text> + <text x="59.4" y="60.72" >`</text> + <g> + <path d="M 15.84,5.28 A 5.28,5.28 0,0,0 11.88,7.92" class="nofill"></path> + <line x1="11.88" y1="7.92" x2="2.64" y2="26.400002" class="solid"></line> + <line x1="15.84" y1="5.28" x2="26.400002" y2="5.28" class="solid"></line> + <path d="M 26.400002,5.28 A 5.28,5.28 0,0,1 30.36,7.92" class="nofill"></path> + <line x1="30.36" y1="7.92" x2="39.600002" y2="26.400002" class="solid"></line> + <line x1="2.64" y1="26.400002" x2="2.64" y2="63.36" class="solid"></line> + <line x1="39.600002" y1="26.400002" x2="39.600002" y2="52.800003" class="solid"></line> + <line x1="13.200001" y1="42.24" x2="29.04" y2="42.24" class="solid"></line> + <line x1="13.200001" y1="42.24" x2="13.200001" y2="63.36" class="solid"></line> + <line x1="29.04" y1="42.24" x2="29.04" y2="52.800003" class="solid"></line> + <line x1="2.64" y1="63.36" x2="13.200001" y2="63.36" class="solid"></line> + </g> + <g> + <path d="M 47.52,5.28 A 2.64,2.64 0,0,0 44.88,7.92" class="nofill"></path> + <line x1="44.88" y1="7.92" x2="44.88" y2="31.68" class="solid"></line> + <line x1="47.52" y1="5.28" x2="63.36" y2="5.28" class="solid"></line> + <path d="M 63.36,5.28 A 5.28,5.28 0,0,1 67.32,7.92" class="nofill"></path> + <line x1="67.32" y1="7.92" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="77.880005" y2="55.440002" class="solid"></line> + <line x1="63.36" y1="58.08" x2="73.920006" y2="58.08" class="solid"></line> + <path d="M 77.880005,55.440002 A 5.28,5.28 0,0,1 73.920006,58.08" class="nofill"></path> + </g> + <g> + <line x1="21.12" y1="10.56" x2="10.56" y2="31.68" class="solid"></line> + <line x1="21.12" y1="10.56" x2="31.68" y2="31.68" class="solid"></line> + <line x1="10.56" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> + </g> + <g> + <path d="M 58.08,15.84 A 2.64,2.64 0,0,0 55.440002,18.480001" class="nofill"></path> + <line x1="55.440002" y1="18.480001" x2="55.440002" y2="52.800003" class="solid"></line> + <line x1="58.08" y1="15.84" x2="63.36" y2="15.84" class="solid"></line> + <path d="M 63.36,15.84 A 2.64,2.64 0,0,1 66,18.480001" class="nofill"></path> + <line x1="66" y1="18.480001" x2="66" y2="23.76" class="solid"></line> + <line x1="55.440002" y1="26.400002" x2="63.36" y2="26.400002" class="solid"></line> + <path d="M 66,23.76 A 2.64,2.64 0,0,1 63.36,26.400002" class="nofill"></path> + <line x1="55.440002" y1="36.960003" x2="68.64" y2="36.960003" class="solid"></line> + <path d="M 68.64,36.960003 A 2.64,2.64 0,0,1 71.28001,39.600002" class="nofill"></path> + <line x1="71.28001" y1="39.600002" x2="71.28001" y2="44.88" class="solid"></line> + <line x1="63.36" y1="47.52" x2="68.64" y2="47.52" class="solid"></line> + <path d="M 71.28001,44.88 A 2.64,2.64 0,0,1 68.64,47.52" class="nofill"></path> + </g> + <g> + <path d="M 110.880005,10.56 A 10.56,10.56 0,0,1 110.880005,21.12" class="nofill"></path> + <path d="M 110.880005,21.12 A 10.56,10.56 0,0,0 110.880005,31.68" class="nofill"></path> + <line x1="110.880005" y1="31.68" x2="116.16" y2="31.68" class="solid"></line> + <path d="M 116.16,21.12 A 10.56,10.56 0,0,1 116.16,31.68" class="nofill"></path> + </g> + <g> + <line x1="84.48" y1="31.68" x2="100.32001" y2="63.36" class="solid"></line> + <line x1="100.32001" y1="31.68" x2="106.920006" y2="44.88" class="solid"></line> + <path d="M 106.920006,44.88 A 5.28,5.28 0,0,0 110.880005,47.52" class="nofill"></path> + <line x1="110.880005" y1="47.52" x2="116.16" y2="47.52" class="solid"></line> + <path d="M 116.16,47.52 A 5.28,5.28 0,0,1 120.12,50.160004" class="nofill"></path> + <line x1="120.12" y1="50.160004" x2="126.72" y2="63.36" class="solid"></line> + <line x1="100.32001" y1="63.36" x2="126.72" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="47.52" y1="52.800003" x2="42.24" y2="63.36" class="solid"></line> + <path d="M 42.24,63.36 A 10.56,10.56 0,0,0 42.24,73.920006" class="nofill"></path> + <line x1="42.24" y1="73.920006" x2="52.800003" y2="73.920006" class="solid"></line> + <path d="M 52.800003,52.800003 A 10.56,10.56 0,0,0 52.800003,63.36" class="nofill"></path> + <path d="M 52.800003,63.36 A 10.56,10.56 0,0,1 52.800003,73.920006" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/effect/dancingfont.svg b/static/db/jave/effect/dancingfont.svg deleted file mode 100644 index 572f9607d5a52df080a2989376937fe70420d283..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/dancingfont.svg +++ /dev/null @@ -1,127 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="84.48"></rect> - <text x="1.32" y="18.480001" >U</text> - <text x="22.44" y="18.480001" >"</text> - <text x="43.56" y="18.480001" >u</text> - <line x1="21.12" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> - <text x="38.280003" y="60.72" >></text> - <polygon points="42.24,55.440002 47.52,58.08 42.24,60.72" class="filled"></polygon> - <g> - <line x1="21.12" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> - <line x1="21.12" y1="10.56" x2="0" y2="52.800003" class="solid"></line> - <line x1="26.400002" y1="10.56" x2="47.52" y2="52.800003" class="solid"></line> - <line x1="5.28" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> - <line x1="42.24" y1="21.12" x2="36.960003" y2="31.68" class="solid"></line> - <line x1="0" y1="52.800003" x2="10.56" y2="52.800003" class="solid"></line> - <line x1="5.28" y1="52.800003" x2="10.56" y2="63.36" class="solid"></line> - <line x1="15.84" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> - <line x1="15.84" y1="42.24" x2="10.56" y2="52.800003" class="solid"></line> - <line x1="31.68" y1="42.24" x2="36.960003" y2="52.800003" class="solid"></line> - <line x1="36.960003" y1="52.800003" x2="47.52" y2="52.800003" class="solid"></line> - <line x1="10.56" y1="52.800003" x2="15.84" y2="63.36" class="solid"></line> - <path d="M 5.28,63.36 A 10.56,10.56 0,0,0 5.28,73.920006" class="nofill"></path> - <line x1="5.28" y1="73.920006" x2="15.84" y2="73.920006" class="solid"></line> - <path d="M 15.84,63.36 A 10.56,10.56 0,0,1 15.84,73.920006" class="nofill"></path> - </g> - <g> - <path d="M 36.960003,63.36 A 10.56,10.56 0,0,0 36.960003,73.920006" class="nofill"></path> - <line x1="36.960003" y1="73.920006" x2="47.52" y2="73.920006" class="solid"></line> - <path d="M 47.52,63.36 A 10.56,10.56 0,0,1 47.52,73.920006" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/flowerpower.svg b/static/db/jave/effect/flowerpower.svg deleted file mode 100644 index b4086afca6d0f73cc15262bfec678ac37dec02c7..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/flowerpower.svg +++ /dev/null @@ -1,156 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="105.600006"></rect> - <text x="11.88" y="18.480001" >'</text> - <text x="43.56" y="18.480001" >`</text> - <text x="22.44" y="29.04" >'</text> - <text x="33" y="50.160004" >`</text> - <line x1="2.64" y1="60.72" x2="2.64" y2="73.920006" class="solid"></line> - <text x="6.6000004" y="60.72" >'</text> - <line x1="0" y1="73.920006" x2="5.28" y2="84.48" class="solid"></line> - <text x="27.720001" y="81.840004" >o</text> - <text x="6.6000004" y="92.4" >'.</text> - <text x="27.720001" y="92.4" >,</text> - <text x="43.56" y="92.4" >.</text> - <g> - <line x1="15.84" y1="10.56" x2="36.960003" y2="10.56" class="solid"></line> - <path d="M 15.84,10.56 A 21.12,21.12 0,0,0 5.28,21.12" class="nofill"></path> - <line x1="5.28" y1="21.12" x2="2.64" y2="26.400002" class="solid"></line> - <line x1="2.64" y1="26.400002" x2="2.64" y2="42.24" class="solid"></line> - <line x1="2.64" y1="42.24" x2="23.76" y2="42.24" class="solid"></line> - <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> - </g> - <g> - <line x1="26.400002" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> - <line x1="36.960003" y1="21.12" x2="42.24" y2="31.68" class="solid"></line> - <line x1="42.24" y1="31.68" x2="36.960003" y2="42.24" class="solid"></line> - </g> - <g> - <path d="M 42.24,10.56 A 21.12,21.12 0,0,1 52.800003,21.12" class="nofill"></path> - <line x1="52.800003" y1="21.12" x2="55.440002" y2="26.400002" class="solid"></line> - <line x1="55.440002" y1="26.400002" x2="55.440002" y2="73.920006" class="solid"></line> - </g> - <g> - <line x1="15.84" y1="52.800003" x2="21.12" y2="52.800003" class="solid"></line> - <line x1="26.400002" y1="47.52" x2="21.12" y2="52.800003" class="solid"></line> - <line x1="26.400002" y1="47.52" x2="31.68" y2="47.52" class="solid"></line> - </g> - <g> - <line x1="26.400002" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> - <path d="M 26.400002,63.36 A 10.56,10.56 0,0,0 26.400002,73.920006" class="nofill"></path> - <path d="M 31.68,63.36 A 10.56,10.56 0,0,1 31.68,73.920006" class="nofill"></path> - </g> - <g> - <line x1="15.84" y1="73.920006" x2="21.12" y2="73.920006" class="solid"></line> - <path d="M 15.84,73.920006 A 10.56,10.56 0,0,0 15.84,84.48" class="nofill"></path> - <line x1="15.84" y1="84.48" x2="21.12" y2="84.48" class="solid"></line> - <path d="M 21.12,84.48 A 10.56,10.56 0,0,0 21.12,95.04" class="nofill"></path> - <line x1="21.12" y1="95.04" x2="26.400002" y2="95.04" class="solid"></line> - </g> - <g> - <line x1="36.960003" y1="73.920006" x2="42.24" y2="73.920006" class="solid"></line> - <line x1="36.960003" y1="84.48" x2="42.24" y2="84.48" class="solid"></line> - <path d="M 42.24,73.920006 A 10.56,10.56 0,0,1 42.24,84.48" class="nofill"></path> - <line x1="31.68" y1="95.04" x2="36.960003" y2="95.04" class="solid"></line> - <path d="M 36.960003,84.48 A 10.56,10.56 0,0,1 36.960003,95.04" class="nofill"></path> - </g> - <g> - <line x1="58.08" y1="73.920006" x2="52.800003" y2="84.48" class="solid"></line> - <path d="M 52.800003,84.48 A 21.12,21.12 0,0,1 42.24,95.04" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/funface.svg b/static/db/jave/effect/funface.svg deleted file mode 100644 index 4256d048550e7ce3dc22833af6af5801a605a512..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/funface.svg +++ /dev/null @@ -1,131 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="84.48"></rect> - <line x1="21.12" y1="10.56" x2="13.200001" y2="26.400002" class="solid end_marked_open_circle"></line> - <path d="M 21.12,10.56 A 10.56,10.56 0,0,1 21.12,21.12" class="nofill"></path> - <path d="M 10.56,21.12 A 10.56,10.56 0,0,0 10.56,31.68" class="nofill"></path> - <text x="27.720001" y="29.04" >O</text> - <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> - <text x="6.6000004" y="50.160004" >|</text> - <text x="33" y="50.160004" >|</text> - <line x1="10.56" y1="52.800003" x2="5.28" y2="63.36" class="solid"></line> - <text x="11.88" y="60.72" >,</text> - <line x1="34.32" y1="52.800003" x2="34.32" y2="66" class="solid"></line> - <line x1="0" y1="68.64" x2="5.28" y2="68.64" class="solid"></line> - <text x="6.6000004" y="71.28001" >'</text> - <text x="27.720001" y="71.28001" >'</text> - <g> - <path d="M 15.84,21.12 A 10.56,10.56 0,0,1 15.84,31.68" class="nofill"></path> - <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> - </g> - <g> - <path d="M 26.400002,21.12 A 10.56,10.56 0,0,0 26.400002,31.68" class="nofill"></path> - <line x1="26.400002" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> - </g> - <g> - <line x1="21.12" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> - <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> - <path d="M 15.84,42.24 A 10.56,10.56 0,0,0 15.84,52.800003" class="nofill"></path> - <line x1="15.84" y1="52.800003" x2="26.400002" y2="52.800003" class="solid"></line> - <path d="M 26.400002,42.24 A 10.56,10.56 0,0,1 26.400002,52.800003" class="nofill"></path> - </g> - <g> - <line x1="15.84" y1="58.08" x2="23.76" y2="58.08" class="solid"></line> - <path d="M 23.76,58.08 A 5.28,5.28 0,0,1 29.04,63.36" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/funfaces.svg b/static/db/jave/effect/funfaces.svg deleted file mode 100644 index 4256d048550e7ce3dc22833af6af5801a605a512..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/funfaces.svg +++ /dev/null @@ -1,131 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="84.48"></rect> - <line x1="21.12" y1="10.56" x2="13.200001" y2="26.400002" class="solid end_marked_open_circle"></line> - <path d="M 21.12,10.56 A 10.56,10.56 0,0,1 21.12,21.12" class="nofill"></path> - <path d="M 10.56,21.12 A 10.56,10.56 0,0,0 10.56,31.68" class="nofill"></path> - <text x="27.720001" y="29.04" >O</text> - <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> - <text x="6.6000004" y="50.160004" >|</text> - <text x="33" y="50.160004" >|</text> - <line x1="10.56" y1="52.800003" x2="5.28" y2="63.36" class="solid"></line> - <text x="11.88" y="60.72" >,</text> - <line x1="34.32" y1="52.800003" x2="34.32" y2="66" class="solid"></line> - <line x1="0" y1="68.64" x2="5.28" y2="68.64" class="solid"></line> - <text x="6.6000004" y="71.28001" >'</text> - <text x="27.720001" y="71.28001" >'</text> - <g> - <path d="M 15.84,21.12 A 10.56,10.56 0,0,1 15.84,31.68" class="nofill"></path> - <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> - </g> - <g> - <path d="M 26.400002,21.12 A 10.56,10.56 0,0,0 26.400002,31.68" class="nofill"></path> - <line x1="26.400002" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> - </g> - <g> - <line x1="21.12" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> - <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> - <path d="M 15.84,42.24 A 10.56,10.56 0,0,0 15.84,52.800003" class="nofill"></path> - <line x1="15.84" y1="52.800003" x2="26.400002" y2="52.800003" class="solid"></line> - <path d="M 26.400002,42.24 A 10.56,10.56 0,0,1 26.400002,52.800003" class="nofill"></path> - </g> - <g> - <line x1="15.84" y1="58.08" x2="23.76" y2="58.08" class="solid"></line> - <path d="M 23.76,58.08 A 5.28,5.28 0,0,1 29.04,63.36" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/ghost.svg b/static/db/jave/effect/ghost.svg deleted file mode 100644 index 51955669c41d3eceb416f6de5446950d95f30581..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/ghost.svg +++ /dev/null @@ -1,161 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="105.600006"></rect> - <path d="M 21.12,0 A 10.56,10.56 0,0,0 21.12,10.56" class="nofill"></path> - <text x="22.44" y="7.92" >'</text> - <text x="22.44" y="18.480001" >OO</text> - <text x="43.56" y="18.480001" >.</text> - <line x1="47.52" y1="15.84" x2="52.800003" y2="15.84" class="solid"></line> - <text x="54.120003" y="18.480001" >.</text> - <text x="22.44" y="29.04" >.</text> - <line x1="58.08" y1="21.12" x2="52.800003" y2="31.68" class="solid"></line> - <text x="22.44" y="50.160004" >'</text> - <text x="54.120003" y="50.160004" >|</text> - <line x1="13.200001" y1="52.800003" x2="13.200001" y2="63.36" class="solid"></line> - <text x="33" y="60.72" >.</text> - <text x="11.88" y="71.28001" >|</text> - <g> - <line x1="26.400002" y1="5.28" x2="31.68" y2="5.28" class="solid"></line> - <path d="M 31.68,5.28 A 5.28,5.28 0,0,1 35.640003,7.92" class="nofill"></path> - <line x1="35.640003" y1="7.92" x2="36.960003" y2="10.56" class="solid"></line> - <path d="M 36.960003,10.56 A 10.56,10.56 0,0,1 36.960003,21.12" class="nofill"></path> - </g> - <g> - <path d="M 15.84,10.56 A 10.56,10.56 0,0,0 15.84,21.12" class="nofill"></path> - <line x1="15.84" y1="21.12" x2="13.200001" y2="26.400002" class="solid"></line> - <line x1="13.200001" y1="26.400002" x2="13.200001" y2="44.88" class="solid"></line> - <path d="M 5.28,47.52 A 1.98,1.98 0,0,0 3.96,50.160004" class="nofill"></path> - <line x1="3.96" y1="50.160004" x2="10.56" y2="63.36" class="solid"></line> - <line x1="5.28" y1="47.52" x2="10.56" y2="47.52" class="solid"></line> - <path d="M 13.200001,44.88 A 2.64,2.64 0,0,1 10.56,47.52" class="nofill"></path> - <path d="M 13.200001,44.88 A 2.64,2.64 0,0,0 15.84,47.52" class="nofill"></path> - <line x1="15.84" y1="47.52" x2="21.12" y2="47.52" class="solid"></line> - </g> - <g> - <line x1="31.68" y1="26.400002" x2="42.24" y2="26.400002" class="solid"></line> - <line x1="44.88" y1="21.12" x2="44.88" y2="23.76" class="solid"></line> - <path d="M 44.88,23.76 A 10.56,10.56 0,0,0 46.2,29.04" class="nofill"></path> - <path d="M 42.24,26.400002 A 5.28,5.28 0,0,1 46.2,29.04" class="nofill"></path> - <line x1="46.2" y1="29.04" x2="52.800003" y2="42.24" class="solid"></line> - </g> - <g> - <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> - <line x1="23.76" y1="36.960003" x2="34.32" y2="36.960003" class="solid"></line> - <path d="M 34.32,36.960003 A 5.28,5.28 0,0,1 39.600002,42.24" class="nofill"></path> - <line x1="39.600002" y1="42.24" x2="39.600002" y2="55.440002" class="solid"></line> - </g> - <g> - <line x1="23.76" y1="52.800003" x2="23.76" y2="63.36" class="solid"></line> - <line x1="23.76" y1="63.36" x2="31.68" y2="63.36" class="solid"></line> - </g> - <g> - <line x1="55.440002" y1="52.800003" x2="55.440002" y2="87.12" class="solid"></line> - <path d="M 31.68,68.64 A 2.64,2.64 0,0,0 29.04,71.28001" class="nofill"></path> - <line x1="29.04" y1="71.28001" x2="29.04" y2="87.12" class="solid"></line> - <line x1="31.68" y1="68.64" x2="36.960003" y2="68.64" class="solid"></line> - <path d="M 36.960003,68.64 A 2.64,2.64 0,0,1 39.600002,71.28001" class="nofill"></path> - <line x1="39.600002" y1="71.28001" x2="39.600002" y2="87.12" class="solid"></line> - <path d="M 39.600002,87.12 A 2.64,2.64 0,0,0 42.24,89.76" class="nofill"></path> - <line x1="42.24" y1="89.76" x2="52.800003" y2="89.76" class="solid"></line> - <path d="M 55.440002,87.12 A 2.64,2.64 0,0,1 52.800003,89.76" class="nofill"></path> - <line x1="13.200001" y1="73.920006" x2="13.200001" y2="87.12" class="solid"></line> - <path d="M 13.200001,87.12 A 2.64,2.64 0,0,0 15.84,89.76" class="nofill"></path> - <line x1="15.84" y1="89.76" x2="26.400002" y2="89.76" class="solid"></line> - <path d="M 29.04,87.12 A 2.64,2.64 0,0,1 26.400002,89.76" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/lildevil.svg b/static/db/jave/effect/lildevil.svg deleted file mode 100644 index b863175c8e927a339c3e86ad65e7eb29551294b3..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/lildevil.svg +++ /dev/null @@ -1,154 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="95.04"></rect> - <text x="11.88" y="7.92" >`</text> - <line x1="15.84" y1="5.28" x2="21.12" y2="5.28" class="solid"></line> - <text x="22.44" y="7.92" >'</text> - <line x1="11.88" y1="18.480001" x2="13.200001" y2="15.84" class="solid end_marked_big_open_circle"></line> - <text x="17.16" y="18.480001" >O</text> - <text x="33" y="18.480001" >.</text> - <text x="17.16" y="29.04" >,</text> - <text x="33" y="39.600002" >`.</text> - <text x="17.16" y="50.160004" >'</text> - <text x="33" y="50.160004" >.'</text> - <text x="48.84" y="50.160004" >|</text> - <path d="M 5.28,52.800003 A 10.56,10.56 0,0,0 5.28,63.36" class="nofill"></path> - <g> - <path d="M 10.56,0 A 10.56,10.56 0,0,0 10.56,10.56" class="nofill"></path> - <path d="M 10.56,10.56 A 10.56,10.56 0,0,0 10.56,21.12" class="nofill"></path> - <line x1="10.56" y1="21.12" x2="7.92" y2="26.400002" class="solid"></line> - <line x1="7.92" y1="26.400002" x2="7.92" y2="44.88" class="solid"></line> - <path d="M 7.92,44.88 A 2.64,2.64 0,0,0 10.56,47.52" class="nofill"></path> - <line x1="10.56" y1="47.52" x2="15.84" y2="47.52" class="solid"></line> - </g> - <g> - <path d="M 26.400002,0 A 10.56,10.56 0,0,1 26.400002,10.56" class="nofill"></path> - <path d="M 26.400002,10.56 A 10.56,10.56 0,0,1 26.400002,21.12" class="nofill"></path> - </g> - <g> - <line x1="42.24" y1="10.56" x2="47.52" y2="10.56" class="solid"></line> - <line x1="36.960003" y1="15.84" x2="44.88" y2="15.84" class="solid"></line> - <line x1="47.52" y1="10.56" x2="42.24" y2="21.12" class="solid"></line> - </g> - <g> - <line x1="21.12" y1="26.400002" x2="36.960003" y2="26.400002" class="solid"></line> - <path d="M 36.960003,26.400002 A 5.28,5.28 0,0,1 40.920002,29.04" class="nofill"></path> - <line x1="40.920002" y1="29.04" x2="47.52" y2="42.24" class="solid"></line> - </g> - <g> - <line x1="15.84" y1="31.68" x2="23.76" y2="47.52" class="solid"></line> - <line x1="31.68" y1="31.68" x2="23.76" y2="47.52" class="solid"></line> - <line x1="23.76" y1="47.52" x2="23.76" y2="52.800003" class="solid"></line> - <line x1="23.76" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> - </g> - <g> - <line x1="7.92" y1="52.800003" x2="7.92" y2="76.560005" class="solid"></line> - <path d="M 7.92,76.560005 A 2.64,2.64 0,0,0 10.56,79.200005" class="nofill"></path> - <line x1="10.56" y1="79.200005" x2="21.12" y2="79.200005" class="solid"></line> - <path d="M 26.400002,58.08 A 2.64,2.64 0,0,0 23.76,60.72" class="nofill"></path> - <line x1="23.76" y1="60.72" x2="23.76" y2="76.560005" class="solid"></line> - <line x1="26.400002" y1="58.08" x2="31.68" y2="58.08" class="solid"></line> - <path d="M 31.68,58.08 A 2.64,2.64 0,0,1 34.32,60.72" class="nofill"></path> - <line x1="34.32" y1="60.72" x2="34.32" y2="76.560005" class="solid"></line> - <path d="M 23.76,76.560005 A 2.64,2.64 0,0,1 21.12,79.200005" class="nofill"></path> - <path d="M 34.32,76.560005 A 2.64,2.64 0,0,0 36.960003,79.200005" class="nofill"></path> - <line x1="36.960003" y1="79.200005" x2="47.52" y2="79.200005" class="solid"></line> - <line x1="50.160004" y1="52.800003" x2="50.160004" y2="76.560005" class="solid"></line> - <path d="M 50.160004,76.560005 A 2.64,2.64 0,0,1 47.52,79.200005" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/train.svg b/static/db/jave/effect/train.svg deleted file mode 100644 index 53b13c5bb53422820c7b6fc47816c89da92b0c45..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/train.svg +++ /dev/null @@ -1,128 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> - <line x1="21.12" y1="26.400002" x2="26.400002" y2="26.400002" class="solid"></line> - <text x="33" y="50.160004" >"</text> - <text x="1.32" y="60.72" >"</text> - <text x="17.16" y="60.72" >0</text> - <line x1="21.12" y1="58.08" x2="26.400002" y2="58.08" class="solid"></line> - <text x="27.720001" y="60.72" >0</text> - <text x="11.88" y="50.160004" ></text> - <text x="22.44" y="50.160004" ></text> - <g> - <line x1="15.84" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> - <line x1="15.84" y1="10.56" x2="13.200001" y2="15.84" class="solid"></line> - <line x1="13.200001" y1="15.84" x2="13.200001" y2="42.24" class="solid"></line> - <line x1="31.68" y1="10.56" x2="34.32" y2="15.84" class="solid"></line> - <line x1="34.32" y1="15.84" x2="34.32" y2="42.24" class="solid"></line> - <line x1="13.200001" y1="42.24" x2="34.32" y2="42.24" class="solid"></line> - <line x1="23.76" y1="31.68" x2="23.76" y2="42.24" class="solid"></line> - </g> - <g> - <line x1="0" y1="52.800003" x2="7.92" y2="52.800003" class="solid"></line> - <line x1="7.92" y1="42.24" x2="7.92" y2="55.440002" class="solid"></line> - <line x1="5.28" y1="52.800003" x2="10.56" y2="58.08" class="solid"></line> - <path d="M 7.92,55.440002 A 2.64,2.64 0,0,0 10.56,58.08" class="nofill"></path> - <line x1="10.56" y1="58.08" x2="15.84" y2="58.08" class="solid"></line> - </g> - <g> - <line x1="39.600002" y1="42.24" x2="39.600002" y2="55.440002" class="solid"></line> - <line x1="31.68" y1="58.08" x2="36.960003" y2="58.08" class="solid"></line> - <path d="M 39.600002,55.440002 A 2.64,2.64 0,0,1 36.960003,58.08" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/twisted.svg b/static/db/jave/effect/twisted.svg deleted file mode 100644 index 7507e78c13dbed7f3dc38f9f502bec7cc2fa9c46..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/twisted.svg +++ /dev/null @@ -1,140 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> - <g> - <line x1="15.84" y1="10.56" x2="42.24" y2="10.56" class="solid"></line> - <line x1="15.84" y1="10.56" x2="5.28" y2="31.68" class="solid"></line> - <line x1="15.84" y1="10.56" x2="21.12" y2="21.12" class="solid"></line> - <line x1="21.12" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> - <line x1="42.24" y1="10.56" x2="36.960003" y2="21.12" class="solid"></line> - <line x1="42.24" y1="10.56" x2="52.800003" y2="31.68" class="solid"></line> - <line x1="21.12" y1="21.12" x2="15.84" y2="31.68" class="solid"></line> - <line x1="36.960003" y1="21.12" x2="42.24" y2="31.68" class="solid"></line> - <line x1="5.28" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> - <line x1="15.84" y1="31.68" x2="21.12" y2="42.24" class="solid"></line> - <line x1="42.24" y1="31.68" x2="36.960003" y2="42.24" class="solid"></line> - <line x1="52.800003" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> - <line x1="10.56" y1="42.24" x2="5.28" y2="52.800003" class="solid"></line> - <line x1="21.12" y1="42.24" x2="15.84" y2="52.800003" class="solid"></line> - <line x1="36.960003" y1="42.24" x2="42.24" y2="52.800003" class="solid"></line> - <line x1="47.52" y1="42.24" x2="52.800003" y2="52.800003" class="solid"></line> - <path d="M 5.28,52.800003 A 10.56,10.56 0,0,0 5.28,63.36" class="nofill"></path> - <path d="M 15.84,52.800003 A 10.56,10.56 0,0,0 15.84,63.36" class="nofill"></path> - <line x1="15.84" y1="63.36" x2="21.12" y2="63.36" class="solid"></line> - <path d="M 52.800003,52.800003 A 10.56,10.56 0,0,1 52.800003,63.36" class="nofill"></path> - <line x1="5.28" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> - <line x1="15.84" y1="63.36" x2="10.56" y2="73.920006" class="solid"></line> - <line x1="10.56" y1="73.920006" x2="21.12" y2="73.920006" class="solid"></line> - <line x1="26.400002" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> - <path d="M 26.400002,52.800003 A 10.56,10.56 0,0,0 26.400002,63.36" class="nofill"></path> - <path d="M 31.68,52.800003 A 10.56,10.56 0,0,1 31.68,63.36" class="nofill"></path> - <line x1="26.400002" y1="63.36" x2="21.12" y2="73.920006" class="solid"></line> - <line x1="31.68" y1="63.36" x2="36.960003" y2="73.920006" class="solid"></line> - <line x1="36.960003" y1="73.920006" x2="47.52" y2="73.920006" class="solid"></line> - <line x1="36.960003" y1="63.36" x2="42.24" y2="63.36" class="solid"></line> - <path d="M 42.24,52.800003 A 10.56,10.56 0,0,1 42.24,63.36" class="nofill"></path> - <line x1="42.24" y1="63.36" x2="47.52" y2="73.920006" class="solid"></line> - <line x1="52.800003" y1="63.36" x2="47.52" y2="73.920006" class="solid"></line> - </g> - <g> - <line x1="26.400002" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> - <path d="M 26.400002,31.68 A 10.56,10.56 0,0,0 26.400002,42.24" class="nofill"></path> - <line x1="26.400002" y1="42.24" x2="31.68" y2="42.24" class="solid"></line> - <path d="M 31.68,31.68 A 10.56,10.56 0,0,1 31.68,42.24" class="nofill"></path> - </g> -</svg> diff --git a/static/db/jave/effect/wetletter.svg b/static/db/jave/effect/wetletter.svg deleted file mode 100644 index ca42140150d76987571b910c69f5776c44a74f56..0000000000000000000000000000000000000000 --- a/static/db/jave/effect/wetletter.svg +++ /dev/null @@ -1,121 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> - <path d="M 31.68,42.24 A 10.56,10.56 0,0,1 31.68,52.800003" class="nofill"></path> - <text x="27.720001" y="60.72" >(</text> - <line x1="31.68" y1="63.36" x2="36.960003" y2="63.36" class="solid"></line> - <text x="38.280003" y="60.72" >)</text> - <g> - <path d="M 15.84,5.28 A 5.28,5.28 0,0,0 11.88,7.92" class="nofill"></path> - <line x1="11.88" y1="7.92" x2="2.64" y2="26.400002" class="solid"></line> - <line x1="15.84" y1="5.28" x2="26.400002" y2="5.28" class="solid"></line> - <path d="M 26.400002,5.28 A 5.28,5.28 0,0,1 30.36,7.92" class="nofill"></path> - <line x1="30.36" y1="7.92" x2="39.600002" y2="26.400002" class="solid"></line> - <line x1="2.64" y1="26.400002" x2="2.64" y2="63.36" class="solid"></line> - <line x1="39.600002" y1="26.400002" x2="39.600002" y2="52.800003" class="solid"></line> - <line x1="13.200001" y1="42.24" x2="29.04" y2="42.24" class="solid"></line> - <line x1="13.200001" y1="42.24" x2="13.200001" y2="63.36" class="solid"></line> - <line x1="29.04" y1="42.24" x2="29.04" y2="52.800003" class="solid"></line> - <line x1="2.64" y1="63.36" x2="13.200001" y2="63.36" class="solid"></line> - </g> - <g> - <line x1="21.12" y1="10.56" x2="10.56" y2="31.68" class="solid"></line> - <line x1="21.12" y1="10.56" x2="31.68" y2="31.68" class="solid"></line> - <line x1="10.56" y1="31.68" x2="31.68" y2="31.68" class="solid"></line> - </g> -</svg> diff --git a/static/db/jave/fill/alligator3.svg b/static/db/jave/fill/alligator3.svg index a6302d9b3eb0b8d092505344dd5e873626e9259b..e8528200b7274fb887bf83bf4de45a38d9f71b82 100644 --- a/static/db/jave/fill/alligator3.svg +++ b/static/db/jave/fill/alligator3.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,22 +112,57 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <line x1="23.76" y1="0" x2="23.76" y2="21.12" class="broken"></line> <text x="27.720001" y="7.92" >:</text> <line x1="34.32" y1="0" x2="34.32" y2="21.12" class="broken"></line> + <text x="64.68" y="7.92" >:</text> + <text x="75.240005" y="7.92" >::::</text> + <line x1="97.68" y1="0" x2="97.68" y2="34.32" class="broken"></line> + <text x="101.64001" y="7.92" >:</text> + <text x="117.48" y="7.92" >:</text> + <text x="128.04001" y="7.92" >::::</text> + <line x1="150.48001" y1="0" x2="150.48001" y2="21.12" class="broken"></line> + <text x="154.44" y="7.92" >:</text> <line x1="39.600002" y1="15.84" x2="39.600002" y2="34.32" class="solid"></line> + <line x1="66" y1="10.56" x2="66" y2="21.12" class="solid"></line> + <line x1="102.96001" y1="10.56" x2="102.96001" y2="21.12" class="solid"></line> + <text x="106.920006" y="18.480001" >::</text> + <line x1="118.8" y1="10.56" x2="118.8" y2="21.12" class="solid"></line> + <line x1="155.76001" y1="10.56" x2="155.76001" y2="15.84" class="solid"></line> + <text x="159.72" y="18.480001" >:</text> <line x1="7.92" y1="26.400002" x2="7.92" y2="34.32" class="solid"></line> + <text x="64.68" y="29.04" >:</text> + <text x="101.64001" y="29.04" >:</text> + <text x="117.48" y="29.04" >:</text> <rect x="5.28" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="39.600002" x2="7.92" y2="44.88" class="solid"></line> <text x="22.44" y="39.600002" >:</text> <line x1="29.04" y1="36.960003" x2="36.960003" y2="36.960003" class="solid"></line> <rect x="36.960003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <text x="54.120003" y="39.600002" >:</text> + <line x1="66" y1="31.68" x2="66" y2="34.32" class="solid"></line> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="39.600002" x2="66" y2="44.88" class="solid"></line> + <line x1="68.64" y1="36.960003" x2="76.560005" y2="36.960003" class="solid"></line> + <text x="80.520004" y="39.600002" >:</text> + <line x1="87.12" y1="36.960003" x2="95.04" y2="36.960003" class="solid"></line> + <rect x="95.04" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="31.68" x2="118.8" y2="34.32" class="solid"></line> + <rect x="116.16" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="39.600002" x2="118.8" y2="44.88" class="solid"></line> <rect x="5.28" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="50.160004" x2="7.92" y2="66" class="solid"></line> <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="50.160004" y1="50.160004" x2="50.160004" y2="66" class="solid"></line> + <line x1="55.440002" y1="42.24" x2="55.440002" y2="55.440002" class="solid"></line> + <line x1="52.800003" y1="47.52" x2="63.36" y2="47.52" class="solid"></line> + <rect x="63.36" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="66" y1="50.160004" x2="66" y2="66" class="solid"></line> + <rect x="100.32001" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="102.96001" y1="50.160004" x2="102.96001" y2="66" class="solid"></line> + <rect x="116.16" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="118.8" y1="50.160004" x2="118.8" y2="66" class="solid"></line> <rect x="0" y="55.440002" width="5.28" height="5.279999" class="solid filled" rx="0"></rect> <line x1="2.64" y1="60.72" x2="2.64" y2="66" class="solid"></line> <line x1="5.28" y1="58.08" x2="10.56" y2="58.08" class="solid"></line> @@ -121,12 +173,58 @@ <line x1="47.52" y1="58.08" x2="52.800003" y2="58.08" class="solid"></line> <rect x="52.800003" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <line x1="55.440002" y1="60.72" x2="55.440002" y2="66" class="solid"></line> + <rect x="58.08" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="60.72" y1="60.72" x2="60.72" y2="66" class="solid"></line> + <line x1="63.36" y1="58.08" x2="68.64" y2="58.08" class="solid"></line> + <rect x="68.64" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="60.72" x2="71.28001" y2="66" class="solid"></line> + <rect x="95.04" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="60.72" x2="97.68" y2="66" class="solid"></line> + <line x1="100.32001" y1="58.08" x2="105.600006" y2="58.08" class="solid"></line> + <rect x="105.600006" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="116.16" y1="58.08" x2="121.44" y2="58.08" class="solid"></line> + <rect x="121.44" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="124.08" y1="60.72" x2="124.08" y2="66" class="solid"></line> + <rect x="147.84001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="150.48001" y1="60.72" x2="150.48001" y2="66" class="solid"></line> + <rect x="158.40001" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> <rect x="0" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="5.28" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="10.56" y="66" width="5.2799997" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="68.64" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="73.920006" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="116.16" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="121.44" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="126.72" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="132" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="137.28" y="66" width="5.280014" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="142.56001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="147.84001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="153.12001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <g> + <line x1="60.72" y1="0" x2="60.72" y2="55.440002" class="broken"></line> + <line x1="60.72" y1="36.960003" x2="63.36" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="71.28001" y1="0" x2="71.28001" y2="55.440002" class="broken"></line> + <line x1="68.64" y1="47.52" x2="71.28001" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="124.08" y1="0" x2="124.08" y2="55.440002" class="broken"></line> + <line x1="121.44" y1="36.960003" x2="124.08" y2="36.960003" class="solid"></line> + <line x1="121.44" y1="47.52" x2="124.08" y2="47.52" class="solid"></line> + </g> <g> <line x1="13.200001" y1="10.56" x2="13.200001" y2="55.440002" class="broken"></line> <line x1="10.56" y1="47.52" x2="13.200001" y2="47.52" class="solid"></line> @@ -143,13 +241,31 @@ <line x1="50.160004" y1="26.400002" x2="50.160004" y2="44.88" class="solid"></line> <line x1="42.24" y1="36.960003" x2="50.160004" y2="36.960003" class="solid"></line> </g> + <g> + <line x1="108.240005" y1="21.12" x2="108.240005" y2="26.400002" class="solid"></line> + <line x1="108.240005" y1="26.400002" x2="113.520004" y2="26.400002" class="solid"></line> + <line x1="113.520004" y1="21.12" x2="113.520004" y2="55.440002" class="solid"></line> + <line x1="113.520004" y1="36.960003" x2="116.16" y2="36.960003" class="solid"></line> + </g> <g> <line x1="2.64" y1="36.960003" x2="5.28" y2="36.960003" class="solid"></line> <line x1="2.64" y1="36.960003" x2="2.64" y2="55.440002" class="solid"></line> <line x1="2.64" y1="47.52" x2="5.28" y2="47.52" class="solid"></line> </g> <g> - <line x1="55.440002" y1="42.24" x2="55.440002" y2="55.440002" class="solid"></line> - <line x1="52.800003" y1="47.52" x2="55.440002" y2="47.52" class="solid"></line> + <line x1="97.68" y1="39.600002" x2="97.68" y2="55.440002" class="solid"></line> + <line x1="97.68" y1="47.52" x2="100.32001" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="102.96001" y1="31.68" x2="102.96001" y2="44.88" class="solid"></line> + <line x1="100.32001" y1="36.960003" x2="102.96001" y2="36.960003" class="solid"></line> + </g> + <g> + <line x1="105.600006" y1="47.52" x2="116.16" y2="47.52" class="solid"></line> + <line x1="108.240005" y1="47.52" x2="108.240005" y2="55.440002" class="solid"></line> + </g> + <g> + <line x1="153.12001" y1="58.08" x2="158.40001" y2="58.08" class="solid"></line> + <line x1="155.76001" y1="58.08" x2="155.76001" y2="66" class="solid"></line> </g> </svg> diff --git a/static/db/jave/fill/bright.svg b/static/db/jave/fill/bright.svg index abf2225dc5c34ff55a16d5ff4871fdb917370949..b722719a9b2973030f90bda7d969f801b57d6047 100644 --- a/static/db/jave/fill/bright.svg +++ b/static/db/jave/fill/bright.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="132" height="73.920006"></rect> <text x="1.32" y="7.92" >.</text> <rect x="10.56" y="2.64" width="5.2799997" height="5.2799997" class="solid filled" rx="0"></rect> <line x1="13.200001" y1="7.92" x2="13.200001" y2="13.200001" class="solid"></line> @@ -103,7 +120,23 @@ <rect x="21.12" y="2.64" width="5.2800007" height="5.2799997" class="solid filled" rx="0"></rect> <rect x="26.400002" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> <line x1="29.04" y1="7.92" x2="29.04" y2="13.200001" class="solid"></line> - <text x="38.280003" y="7.92" >.</text> + <text x="38.280003" y="7.92" >..</text> + <rect x="47.52" y="2.64" width="5.2800026" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="50.160004" y1="7.92" x2="50.160004" y2="13.200001" class="solid"></line> + <rect x="52.800003" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="7.92" x2="55.440002" y2="13.200001" class="solid"></line> + <rect x="58.08" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="63.36" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="68.64" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="7.92" x2="71.28001" y2="13.200001" class="solid"></line> + <text x="80.520004" y="7.92" >..</text> + <rect x="95.04" y="2.64" width="5.2800064" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="7.92" x2="97.68" y2="13.200001" class="solid"></line> + <rect x="100.32001" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="105.600006" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="2.64" width="5.279999" height="5.2799997" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="7.92" x2="113.520004" y2="13.200001" class="solid"></line> + <text x="122.76" y="7.92" >.</text> <text x="1.32" y="18.480001" >.</text> <rect x="5.28" y="13.200001" width="5.28" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="7.92" y1="18.480001" x2="7.92" y2="23.76" class="solid"></line> @@ -113,7 +146,23 @@ <line x1="29.04" y1="18.480001" x2="29.04" y2="23.76" class="solid"></line> <rect x="31.68" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="34.32" y1="18.480001" x2="34.32" y2="23.76" class="solid"></line> - <text x="38.280003" y="18.480001" >.</text> + <text x="38.280003" y="18.480001" >..</text> + <rect x="47.52" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="50.160004" y1="18.480001" x2="50.160004" y2="23.76" class="solid"></line> + <rect x="52.800003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="18.480001" x2="55.440002" y2="23.76" class="solid"></line> + <rect x="68.64" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="18.480001" x2="71.28001" y2="23.76" class="solid"></line> + <rect x="73.920006" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <text x="80.520004" y="18.480001" >..</text> + <rect x="89.76" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="18.480001" x2="92.4" y2="23.76" class="solid"></line> + <rect x="95.04" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="18.480001" x2="97.68" y2="23.76" class="solid"></line> + <text x="101.64001" y="18.480001" >..</text> + <rect x="110.880005" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="116.16" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <text x="122.76" y="18.480001" >.</text> <text x="1.32" y="29.04" >.</text> <rect x="5.28" y="23.76" width="5.28" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="7.92" y1="29.04" x2="7.92" y2="34.32" class="solid"></line> @@ -125,7 +174,21 @@ <line x1="29.04" y1="29.04" x2="29.04" y2="34.32" class="solid"></line> <rect x="31.68" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> <line x1="34.32" y1="29.04" x2="34.32" y2="34.32" class="solid"></line> - <text x="38.280003" y="29.04" >.</text> + <text x="38.280003" y="29.04" >..</text> + <rect x="47.52" y="23.76" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="50.160004" y1="29.04" x2="50.160004" y2="34.32" class="solid"></line> + <rect x="52.800003" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="29.04" x2="55.440002" y2="34.32" class="solid"></line> + <rect x="58.08" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="63.36" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="68.64" y="23.76" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="29.04" x2="71.28001" y2="34.32" class="solid"></line> + <text x="80.520004" y="29.04" >..</text> + <rect x="89.76" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="92.4" y1="29.04" x2="92.4" y2="34.32" class="solid"></line> + <rect x="95.04" y="23.76" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="29.04" x2="97.68" y2="34.32" class="solid"></line> + <text x="101.64001" y="29.04" >.....</text> <text x="1.32" y="39.600002" >.</text> <rect x="5.28" y="34.32" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="7.92" y1="39.600002" x2="7.92" y2="44.88" class="solid"></line> @@ -136,15 +199,43 @@ <line x1="29.04" y1="39.600002" x2="29.04" y2="44.88" class="solid"></line> <rect x="31.68" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> <line x1="34.32" y1="39.600002" x2="34.32" y2="44.88" class="solid"></line> - <text x="38.280003" y="39.600002" >.</text> + <text x="38.280003" y="39.600002" >..</text> + <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="50.160004" y1="39.600002" x2="50.160004" y2="44.88" class="solid"></line> + <rect x="52.800003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="55.440002" y1="39.600002" x2="55.440002" y2="44.88" class="solid"></line> + <rect x="68.64" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="39.600002" x2="71.28001" y2="44.88" class="solid"></line> + <rect x="73.920006" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="80.520004" y="39.600002" >..</text> + <rect x="89.76" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="95.04" y="34.32" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="97.68" y1="39.600002" x2="97.68" y2="44.88" class="solid"></line> + <line x1="113.520004" y1="31.68" x2="113.520004" y2="34.32" class="solid"></line> + <rect x="110.880005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="113.520004" y1="39.600002" x2="113.520004" y2="44.88" class="solid"></line> + <line x1="118.8" y1="31.68" x2="118.8" y2="34.32" class="solid"></line> + <rect x="116.16" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="122.76" y="39.600002" >.</text> <text x="1.32" y="50.160004" >.</text> <rect x="5.28" y="44.88" width="5.28" height="5.2800026" class="solid filled" rx="0"></rect> <rect x="10.56" y="44.88" width="5.2799997" height="5.2800026" class="solid filled" rx="0"></rect> <text x="17.16" y="50.160004" >..</text> <rect x="26.400002" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> <rect x="31.68" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> - <text x="38.280003" y="50.160004" >.</text> - <text x="1.32" y="60.72" >........</text> + <text x="38.280003" y="50.160004" >..</text> + <rect x="47.52" y="44.88" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="58.08" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="63.36" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="68.64" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="75.240005" y="50.160004" >....</text> + <rect x="95.04" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="105.600006" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <text x="117.48" y="50.160004" >..</text> + <text x="1.32" y="60.72" >........................</text> <g> <path d="M 10.56,5.28 A 2.64,2.64 0,0,0 7.92,7.92" class="nofill"></path> <line x1="7.92" y1="7.92" x2="7.92" y2="13.200001" class="solid"></line> @@ -153,6 +244,18 @@ <path d="M 31.68,5.28 A 2.64,2.64 0,0,1 34.32,7.92" class="nofill"></path> <line x1="34.32" y1="7.92" x2="34.32" y2="13.200001" class="solid"></line> </g> + <g> + <path d="M 73.920006,5.28 A 2.64,2.64 0,0,1 76.560005,7.92" class="nofill"></path> + <line x1="76.560005" y1="7.92" x2="76.560005" y2="13.200001" class="solid"></line> + </g> + <g> + <path d="M 95.04,5.28 A 2.64,2.64 0,0,0 92.4,7.92" class="nofill"></path> + <line x1="92.4" y1="7.92" x2="92.4" y2="13.200001" class="solid"></line> + </g> + <g> + <path d="M 116.16,5.28 A 2.64,2.64 0,0,1 118.8,7.92" class="nofill"></path> + <line x1="118.8" y1="7.92" x2="118.8" y2="13.200001" class="solid"></line> + </g> <g> <line x1="15.84" y1="15.84" x2="18.480001" y2="15.84" class="solid"></line> <path d="M 15.84,15.84 A 2.64,2.64 0,0,1 18.480001,18.480001" class="nofill"></path> @@ -165,4 +268,44 @@ <path d="M 26.400002,15.84 A 2.64,2.64 0,0,0 23.76,18.480001" class="nofill"></path> <line x1="23.76" y1="18.480001" x2="23.76" y2="23.76" class="solid"></line> </g> + <g> + <line x1="58.08" y1="15.84" x2="60.72" y2="15.84" class="solid"></line> + <path d="M 58.08,15.84 A 2.64,2.64 0,0,1 60.72,18.480001" class="nofill"></path> + <path d="M 60.72,15.84 A 5.28,5.28 0,0,1 66,21.12" class="nofill"></path> + <line x1="60.72" y1="18.480001" x2="60.72" y2="23.76" class="solid"></line> + </g> + <g> + <path d="M 66,15.84 A 5.28,5.28 0,0,0 60.72,21.12" class="nofill"></path> + <line x1="66" y1="15.84" x2="68.64" y2="15.84" class="solid"></line> + <path d="M 68.64,15.84 A 2.64,2.64 0,0,0 66,18.480001" class="nofill"></path> + <line x1="66" y1="18.480001" x2="66" y2="23.76" class="solid"></line> + </g> + <g> + <path d="M 73.920006,26.400002 A 2.64,2.64 0,0,1 76.560005,29.04" class="nofill"></path> + <line x1="76.560005" y1="29.04" x2="76.560005" y2="34.32" class="solid"></line> + </g> + <g> + <line x1="58.08" y1="36.960003" x2="60.72" y2="36.960003" class="solid"></line> + <path d="M 58.08,36.960003 A 2.64,2.64 0,0,1 60.72,39.600002" class="nofill"></path> + <path d="M 60.72,36.960003 A 5.28,5.28 0,0,1 66,42.24" class="nofill"></path> + <line x1="60.72" y1="39.600002" x2="60.72" y2="44.88" class="solid"></line> + </g> + <g> + <path d="M 66,36.960003 A 5.28,5.28 0,0,0 60.72,42.24" class="nofill"></path> + <line x1="66" y1="36.960003" x2="68.64" y2="36.960003" class="solid"></line> + <path d="M 68.64,36.960003 A 2.64,2.64 0,0,0 66,39.600002" class="nofill"></path> + <line x1="66" y1="39.600002" x2="66" y2="44.88" class="solid"></line> + </g> + <g> + <line x1="100.32001" y1="36.960003" x2="102.96001" y2="36.960003" class="solid"></line> + <path d="M 100.32001,36.960003 A 2.64,2.64 0,0,1 102.96001,39.600002" class="nofill"></path> + <path d="M 102.96001,36.960003 A 5.28,5.28 0,0,1 108.240005,42.24" class="nofill"></path> + <line x1="102.96001" y1="39.600002" x2="102.96001" y2="44.88" class="solid"></line> + </g> + <g> + <path d="M 108.240005,36.960003 A 5.28,5.28 0,0,0 102.96001,42.24" class="nofill"></path> + <line x1="108.240005" y1="36.960003" x2="110.880005" y2="36.960003" class="solid"></line> + <path d="M 110.880005,36.960003 A 2.64,2.64 0,0,0 108.240005,39.600002" class="nofill"></path> + <line x1="108.240005" y1="39.600002" x2="108.240005" y2="44.88" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/fill/oldbanner.svg b/static/db/jave/fill/oldbanner.svg index 745f34e470fbd6977ccf5c23d6874f03c465c223..b002f9e94a7ef65ccb1a276ce3da54c556394f6e 100644 --- a/static/db/jave/fill/oldbanner.svg +++ b/static/db/jave/fill/oldbanner.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="84.48"></rect> <text x="17.16" y="7.92" >#</text> <text x="11.88" y="18.480001" >#</text> <text x="22.44" y="18.480001" >#</text> @@ -120,4 +137,48 @@ <line x1="34.32" y1="60.72" x2="34.32" y2="66" class="solid"></line> <rect x="0" y="66" width="5.28" height="5.2800064" class="solid filled" rx="0"></rect> <rect x="31.68" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="42.24" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="18.480001" x2="44.88" y2="23.76" class="solid"></line> + <rect x="47.52" y="13.200001" width="5.2800026" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="58.08" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="63.36" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="42.24" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <text x="69.96" y="29.04" >#</text> + <rect x="42.24" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="39.600002" x2="44.88" y2="44.88" class="solid"></line> + <rect x="47.52" y="34.32" width="5.2800026" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="58.08" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="63.36" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <rect x="42.24" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="50.160004" x2="44.88" y2="55.440002" class="solid"></line> + <rect x="68.64" y="44.88" width="5.2800064" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="71.28001" y1="50.160004" x2="71.28001" y2="55.440002" class="solid"></line> + <rect x="42.24" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="44.88" y1="60.72" x2="44.88" y2="66" class="solid"></line> + <rect x="68.64" y="55.440002" width="5.2800064" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="42.24" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="47.52" y="66" width="5.2800026" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="52.800003" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="58.08" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="63.36" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="84.48" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="89.76" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="95.04" y="13.200001" width="5.2800064" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="13.200001" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <rect x="79.200005" y="23.76" width="5.279999" height="5.2800007" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="29.04" x2="81.840004" y2="34.32" class="solid"></line> + <text x="106.920006" y="29.04" >#</text> + <rect x="79.200005" y="34.32" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="39.600002" x2="81.840004" y2="44.88" class="solid"></line> + <rect x="79.200005" y="44.88" width="5.279999" height="5.2800026" class="solid filled" rx="0"></rect> + <line x1="81.840004" y1="50.160004" x2="81.840004" y2="55.440002" class="solid"></line> + <rect x="79.200005" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="106.920006" y="60.72" >#</text> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="89.76" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="95.04" y="66" width="5.2800064" height="5.2800064" class="solid filled" rx="0"></rect> + <rect x="100.32001" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> </svg> diff --git a/static/db/jave/outline/amcrazo2.flf b/static/db/jave/open/amcrazo2.flf similarity index 100% rename from static/db/jave/outline/amcrazo2.flf rename to static/db/jave/open/amcrazo2.flf diff --git a/static/db/jave/open/amcrazo2.svg b/static/db/jave/open/amcrazo2.svg new file mode 100644 index 0000000000000000000000000000000000000000..99757be0fcb9a662a13ae8c10cbc15f644805978 --- /dev/null +++ b/static/db/jave/open/amcrazo2.svg @@ -0,0 +1,206 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="158.40001" height="95.04"></rect> + <line x1="18.480001" y1="7.92" x2="18.480001" y2="84.48" class="solid"></line> + <line x1="29.04" y1="7.92" x2="29.04" y2="84.48" class="solid"></line> + <line x1="21.12" y1="14.52" x2="26.400002" y2="14.52" class="solid"></line> + <line x1="21.12" y1="17.16" x2="26.400002" y2="17.16" class="solid"></line> + <text x="33" y="18.480001" >`</text> + <line x1="21.12" y1="35.640003" x2="26.400002" y2="35.640003" class="solid"></line> + <line x1="21.12" y1="38.280003" x2="26.400002" y2="38.280003" class="solid"></line> + <text x="11.88" y="81.840004" >.</text> + <text x="33" y="81.840004" >..</text> + <line x1="71.28001" y1="7.92" x2="71.28001" y2="84.48" class="solid"></line> + <line x1="81.840004" y1="7.92" x2="81.840004" y2="31.68" class="solid"></line> + <line x1="73.920006" y1="14.52" x2="79.200005" y2="14.52" class="solid"></line> + <line x1="73.920006" y1="17.16" x2="79.200005" y2="17.16" class="solid"></line> + <text x="85.8" y="18.480001" >`</text> + <text x="75.240005" y="39.600002" >'</text> + <line x1="81.840004" y1="39.600002" x2="81.840004" y2="84.48" class="solid"></line> + <text x="91.08" y="39.600002" >'</text> + <text x="64.68" y="81.840004" >.</text> + <line x1="73.920006" y1="77.880005" x2="79.200005" y2="77.880005" class="solid"></line> + <line x1="73.920006" y1="80.520004" x2="79.200005" y2="80.520004" class="solid"></line> + <text x="85.8" y="81.840004" >.</text> + <line x1="124.08" y1="7.92" x2="124.08" y2="84.48" class="solid"></line> + <line x1="126.72" y1="14.52" x2="132" y2="14.52" class="solid"></line> + <line x1="126.72" y1="17.16" x2="132" y2="17.16" class="solid"></line> + <text x="138.6" y="18.480001" >`</text> + <text x="143.88" y="29.04" >.</text> + <text x="117.48" y="81.840004" >.</text> + <line x1="126.72" y1="77.880005" x2="132" y2="77.880005" class="solid"></line> + <line x1="126.72" y1="80.520004" x2="132" y2="80.520004" class="solid"></line> + <text x="138.6" y="81.840004" >.</text> + <g> + <path d="M 5.28,15.84 A 2.64,2.64 0,0,0 2.64,18.480001" class="nofill"></path> + <line x1="2.64" y1="18.480001" x2="2.64" y2="76.560005" class="solid"></line> + <line x1="5.28" y1="15.84" x2="13.200001" y2="15.84" class="solid"></line> + <path d="M 18.480001,10.56 A 5.28,5.28 0,0,1 13.200001,15.84" class="nofill"></path> + <path d="M 2.64,76.560005 A 2.64,2.64 0,0,0 5.28,79.200005" class="nofill"></path> + <line x1="5.28" y1="79.200005" x2="10.56" y2="79.200005" class="solid"></line> + </g> + <g> + <line x1="36.960003" y1="15.84" x2="42.24" y2="15.84" class="solid"></line> + <path d="M 42.24,15.84 A 2.64,2.64 0,0,1 44.88,18.480001" class="nofill"></path> + <line x1="44.88" y1="18.480001" x2="44.88" y2="84.48" class="solid"></line> + </g> + <g> + <path d="M 58.08,15.84 A 2.64,2.64 0,0,0 55.440002,18.480001" class="nofill"></path> + <line x1="55.440002" y1="18.480001" x2="55.440002" y2="76.560005" class="solid"></line> + <line x1="58.08" y1="15.84" x2="66" y2="15.84" class="solid"></line> + <path d="M 71.28001,10.56 A 5.28,5.28 0,0,1 66,15.84" class="nofill"></path> + <path d="M 55.440002,76.560005 A 2.64,2.64 0,0,0 58.08,79.200005" class="nofill"></path> + <line x1="58.08" y1="79.200005" x2="63.36" y2="79.200005" class="solid"></line> + </g> + <g> + <line x1="89.76" y1="15.84" x2="95.04" y2="15.84" class="solid"></line> + <path d="M 95.04,15.84 A 2.64,2.64 0,0,1 97.68,18.480001" class="nofill"></path> + <line x1="97.68" y1="18.480001" x2="97.68" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="97.68" y1="39.600002" x2="97.68" y2="76.560005" class="solid"></line> + <line x1="89.76" y1="79.200005" x2="95.04" y2="79.200005" class="solid"></line> + <path d="M 97.68,76.560005 A 2.64,2.64 0,0,1 95.04,79.200005" class="nofill"></path> + </g> + <g> + <line x1="134.64" y1="7.92" x2="134.64" y2="23.76" class="solid"></line> + <path d="M 134.64,23.76 A 2.64,2.64 0,0,0 137.28,26.400002" class="nofill"></path> + <line x1="137.28" y1="26.400002" x2="142.56001" y2="26.400002" class="solid"></line> + </g> + <g> + <path d="M 110.880005,15.84 A 2.64,2.64 0,0,0 108.240005,18.480001" class="nofill"></path> + <line x1="108.240005" y1="18.480001" x2="108.240005" y2="76.560005" class="solid"></line> + <line x1="110.880005" y1="15.84" x2="118.8" y2="15.84" class="solid"></line> + <path d="M 124.08,10.56 A 5.28,5.28 0,0,1 118.8,15.84" class="nofill"></path> + <path d="M 108.240005,76.560005 A 2.64,2.64 0,0,0 110.880005,79.200005" class="nofill"></path> + <line x1="110.880005" y1="79.200005" x2="116.16" y2="79.200005" class="solid"></line> + </g> + <g> + <line x1="142.56001" y1="15.84" x2="147.84001" y2="15.84" class="solid"></line> + <path d="M 147.84001,15.84 A 2.64,2.64 0,0,1 150.48001,18.480001" class="nofill"></path> + <line x1="150.48001" y1="18.480001" x2="150.48001" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="150.48001" y1="60.72" x2="150.48001" y2="76.560005" class="solid"></line> + <line x1="142.56001" y1="79.200005" x2="147.84001" y2="79.200005" class="solid"></line> + <path d="M 150.48001,76.560005 A 2.64,2.64 0,0,1 147.84001,79.200005" class="nofill"></path> + </g> + <g> + <path d="M 137.28,68.64 A 2.64,2.64 0,0,0 134.64,71.28001" class="nofill"></path> + <line x1="134.64" y1="71.28001" x2="134.64" y2="84.48" class="solid"></line> + <line x1="137.28" y1="68.64" x2="145.20001" y2="68.64" class="solid"></line> + <path d="M 150.48001,63.36 A 5.28,5.28 0,0,1 145.20001,68.64" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/outline/amcrazor.flf b/static/db/jave/open/amcrazor.flf similarity index 100% rename from static/db/jave/outline/amcrazor.flf rename to static/db/jave/open/amcrazor.flf diff --git a/static/db/jave/open/amcrazor.svg b/static/db/jave/open/amcrazor.svg new file mode 100644 index 0000000000000000000000000000000000000000..c51d79952f8d913a8ae86350788357ec74730d2b --- /dev/null +++ b/static/db/jave/open/amcrazor.svg @@ -0,0 +1,183 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="179.52" height="73.920006"></rect> + <line x1="81.840004" y1="10.56" x2="66" y2="26.400002" class="broken"></line> + <text x="80.520004" y="18.480001" >'</text> + <line x1="89.76" y1="14.52" x2="95.04" y2="14.52" class="solid"></line> + <line x1="89.76" y1="17.16" x2="95.04" y2="17.16" class="solid"></line> + <text x="106.920006" y="18.480001" >`.</text> + <line x1="113.520004" y1="21.12" x2="102.96001" y2="31.68" class="broken"></line> + <text x="112.200005" y="29.04" >'</text> + <line x1="89.76" y1="35.640003" x2="95.04" y2="35.640003" class="solid"></line> + <line x1="89.76" y1="38.280003" x2="95.04" y2="38.280003" class="solid"></line> + <text x="101.64001" y="39.600002" >'.</text> + <line x1="113.520004" y1="42.24" x2="113.520004" y2="55.440002" class="solid"></line> + <line x1="89.76" y1="56.760002" x2="95.04" y2="56.760002" class="solid"></line> + <line x1="89.76" y1="59.4" x2="95.04" y2="59.4" class="solid"></line> + <text x="106.920006" y="60.72" >.</text> + <line x1="139.92" y1="10.56" x2="124.08" y2="26.400002" class="broken"></line> + <text x="138.6" y="18.480001" >'</text> + <line x1="145.20001" y1="10.56" x2="145.20001" y2="63.36" class="solid"></line> + <line x1="147.84001" y1="14.52" x2="153.12001" y2="14.52" class="solid"></line> + <line x1="147.84001" y1="17.16" x2="153.12001" y2="17.16" class="solid"></line> + <text x="165" y="18.480001" >.'</text> + <text x="122.76" y="50.160004" >`</text> + <text x="138.6" y="60.72" >.</text> + <line x1="147.84001" y1="56.760002" x2="153.12001" y2="56.760002" class="solid"></line> + <line x1="147.84001" y1="59.4" x2="153.12001" y2="59.4" class="solid"></line> + <text x="165" y="60.72" >.'</text> + <line x1="18.480001" y1="10.56" x2="2.64" y2="26.400002" class="broken"></line> + <text x="17.16" y="18.480001" >'</text> + <line x1="26.400002" y1="14.52" x2="31.68" y2="14.52" class="solid"></line> + <line x1="26.400002" y1="17.16" x2="31.68" y2="17.16" class="solid"></line> + <text x="38.280003" y="18.480001" >`</text> + <line x1="39.600002" y1="10.56" x2="55.440002" y2="26.400002" class="broken"></line> + <line x1="26.400002" y1="35.640003" x2="31.68" y2="35.640003" class="solid"></line> + <line x1="26.400002" y1="38.280003" x2="31.68" y2="38.280003" class="solid"></line> + <g> + <line x1="97.68" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="97.68" y1="10.56" x2="97.68" y2="63.36" class="solid"></line> + <line x1="97.68" y1="63.36" x2="105.600006" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="87.12" y1="10.56" x2="87.12" y2="63.36" class="solid"></line> + <line x1="66" y1="29.04" x2="66" y2="63.36" class="solid"></line> + <line x1="66" y1="63.36" x2="87.12" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="155.76001" y1="10.56" x2="174.24" y2="10.56" class="solid"></line> + <line x1="155.76001" y1="10.56" x2="155.76001" y2="21.12" class="solid"></line> + <line x1="155.76001" y1="21.12" x2="163.68001" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="124.08" y1="29.04" x2="124.08" y2="42.24" class="solid"></line> + <line x1="124.08" y1="42.24" x2="139.92" y2="58.08" class="broken"></line> + </g> + <g> + <line x1="155.76001" y1="52.800003" x2="174.24" y2="52.800003" class="solid"></line> + <line x1="155.76001" y1="52.800003" x2="155.76001" y2="63.36" class="solid"></line> + <line x1="155.76001" y1="63.36" x2="163.68001" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="23.76" y1="10.56" x2="23.76" y2="63.36" class="solid"></line> + <line x1="2.64" y1="29.04" x2="2.64" y2="63.36" class="solid"></line> + <line x1="2.64" y1="63.36" x2="23.76" y2="63.36" class="solid"></line> + </g> + <g> + <line x1="34.32" y1="10.56" x2="34.32" y2="63.36" class="solid"></line> + <line x1="55.440002" y1="29.04" x2="55.440002" y2="63.36" class="solid"></line> + <line x1="34.32" y1="63.36" x2="55.440002" y2="63.36" class="solid"></line> + </g> +</svg> diff --git a/static/db/jave/outline/amcthin.flf b/static/db/jave/open/amcthin.flf similarity index 100% rename from static/db/jave/outline/amcthin.flf rename to static/db/jave/open/amcthin.flf diff --git a/static/db/jave/open/amcthin.svg b/static/db/jave/open/amcthin.svg new file mode 100644 index 0000000000000000000000000000000000000000..191907f14d28704088dcd873dfdbfd27e29e4253 --- /dev/null +++ b/static/db/jave/open/amcthin.svg @@ -0,0 +1,172 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="147.84001" height="73.920006"></rect> + <rect x="2.64" y="5.28" width="10.56" height="52.800003" class="solid nofill" rx="2.64"></rect> + <rect x="34.32" y="5.28" width="10.560001" height="52.800003" class="solid nofill" rx="2.64"></rect> + <rect x="108.240005" y="5.28" width="10.559998" height="52.800003" class="solid nofill" rx="2.64"></rect> + <text x="17.16" y="7.92" >.</text> + <line x1="21.12" y1="5.28" x2="26.400002" y2="5.28" class="solid"></line> + <text x="27.720001" y="7.92" >.</text> + <line x1="21.12" y1="15.84" x2="26.400002" y2="15.84" class="broken"></line> + <text x="17.16" y="29.04" >.</text> + <line x1="21.12" y1="26.400002" x2="26.400002" y2="26.400002" class="solid"></line> + <text x="27.720001" y="29.04" >.</text> + <line x1="21.12" y1="36.960003" x2="26.400002" y2="36.960003" class="broken"></line> + <text x="85.8" y="7.92" >.</text> + <line x1="73.920006" y1="15.84" x2="84.48" y2="15.84" class="broken"></line> + <text x="85.8" y="18.480001" >.</text> + <line x1="89.76" y1="15.84" x2="95.04" y2="15.84" class="solid"></line> + <text x="96.36" y="18.480001" >.</text> + <text x="85.8" y="29.04" >.</text> + <line x1="89.76" y1="26.400002" x2="95.04" y2="26.400002" class="broken"></line> + <line x1="73.920006" y1="36.960003" x2="84.48" y2="36.960003" class="broken"></line> + <text x="85.8" y="39.600002" >.</text> + <line x1="89.76" y1="36.960003" x2="95.04" y2="36.960003" class="solid"></line> + <text x="96.36" y="39.600002" >.</text> + <text x="85.8" y="50.160004" >.</text> + <line x1="89.76" y1="47.52" x2="95.04" y2="47.52" class="broken"></line> + <line x1="73.920006" y1="58.08" x2="84.48" y2="58.08" class="broken"></line> + <text x="122.76" y="7.92" >.</text> + <line x1="126.72" y1="5.28" x2="137.28" y2="5.28" class="solid"></line> + <text x="138.6" y="7.92" >.</text> + <line x1="126.72" y1="15.84" x2="137.28" y2="15.84" class="broken"></line> + <line x1="126.72" y1="52.800003" x2="137.28" y2="52.800003" class="solid"></line> + <text x="122.76" y="60.72" >`</text> + <line x1="126.72" y1="58.08" x2="137.28" y2="58.08" class="solid"></line> + <text x="138.6" y="60.72" >'</text> + <g> + <path d="M 58.08,5.28 A 2.64,2.64 0,0,0 55.440002,7.92" class="nofill"></path> + <line x1="55.440002" y1="7.92" x2="55.440002" y2="55.440002" class="solid"></line> + <line x1="58.08" y1="5.28" x2="63.36" y2="5.28" class="solid"></line> + <path d="M 63.36,5.28 A 2.64,2.64 0,0,1 66,7.92" class="nofill"></path> + <line x1="66" y1="7.92" x2="66" y2="55.440002" class="solid"></line> + <path d="M 55.440002,55.440002 A 2.64,2.64 0,0,0 58.08,58.08" class="nofill"></path> + <line x1="58.08" y1="58.08" x2="66" y2="58.08" class="solid"></line> + <path d="M 71.28001,52.800003 A 5.28,5.28 0,0,1 66,58.08" class="nofill"></path> + <path d="M 66,55.440002 A 2.64,2.64 0,0,1 63.36,58.08" class="nofill"></path> + </g> + <g> + <path d="M 71.28001,5.28 A 5.28,5.28 0,0,0 66,10.56" class="nofill"></path> + <line x1="71.28001" y1="5.28" x2="84.48" y2="5.28" class="solid"></line> + </g> + <g> + <path d="M 71.28001,26.400002 A 5.28,5.28 0,0,0 66,31.68" class="nofill"></path> + <line x1="71.28001" y1="26.400002" x2="84.48" y2="26.400002" class="solid"></line> + </g> + <g> + <path d="M 71.28001,47.52 A 5.28,5.28 0,0,0 66,52.800003" class="nofill"></path> + <line x1="71.28001" y1="47.52" x2="84.48" y2="47.52" class="solid"></line> + </g> +</svg> diff --git a/static/db/jave/outline/amcun1.flf b/static/db/jave/open/amcun1.flf similarity index 100% rename from static/db/jave/outline/amcun1.flf rename to static/db/jave/open/amcun1.flf diff --git a/static/db/jave/outline/amcun1.svg b/static/db/jave/open/amcun1.svg similarity index 67% rename from static/db/jave/outline/amcun1.svg rename to static/db/jave/open/amcun1.svg index 118956297f80ea5cf6af58db59d75a4d3d2cf807..a3cb61dd3727b057972877764c7b57492f14040d 100644 --- a/static/db/jave/outline/amcun1.svg +++ b/static/db/jave/open/amcun1.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="84.48"></rect> <text x="1.32" y="7.92" >,'',,''',</text> <text x="1.32" y="18.480001" >;</text> <text x="17.16" y="18.480001" >;',</text> @@ -116,4 +133,23 @@ <text x="43.56" y="60.72" >;</text> <text x="1.32" y="71.28001" >',,'</text> <text x="27.720001" y="71.28001" >',,'</text> + <text x="54.120003" y="29.04" >,'',,''',</text> + <text x="54.120003" y="39.600002" >;</text> + <text x="69.96" y="39.600002" >;',</text> + <text x="96.36" y="39.600002" >;</text> + <text x="54.120003" y="50.160004" >;</text> + <text x="69.96" y="50.160004" >;',</text> + <text x="96.36" y="50.160004" >;</text> + <text x="54.120003" y="60.72" >;</text> + <text x="69.96" y="60.72" >;,'</text> + <text x="96.36" y="60.72" >;</text> + <text x="54.120003" y="71.28001" >',,'',,,'</text> + <text x="106.920006" y="29.04" >,'',,'',</text> + <text x="106.920006" y="39.600002" >;</text> + <text x="122.76" y="39.600002" >;',,'</text> + <text x="106.920006" y="50.160004" >;</text> + <text x="122.76" y="50.160004" >;</text> + <text x="106.920006" y="60.72" >;</text> + <text x="122.76" y="60.72" >;,'',</text> + <text x="106.920006" y="71.28001" >',,'',,'</text> </svg> diff --git a/static/db/jave/outline/broadway_kb.flf b/static/db/jave/open/broadway_kb.flf similarity index 100% rename from static/db/jave/outline/broadway_kb.flf rename to static/db/jave/open/broadway_kb.flf diff --git a/static/db/jave/outline/broadway_kb.svg b/static/db/jave/open/broadway_kb.svg similarity index 61% rename from static/db/jave/outline/broadway_kb.svg rename to static/db/jave/open/broadway_kb.svg index e7bd8f0c057bc89afef54be2c1ff2f53aad47acd..f5e8c83cc35e753264c4271900efca177e805c73 100644 --- a/static/db/jave/outline/broadway_kb.svg +++ b/static/db/jave/open/broadway_kb.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="42.24"></rect> + <text x="85.8" y="18.480001" >`</text> + <text x="91.08" y="29.04" >,</text> <g> <line x1="10.56" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> @@ -104,4 +123,21 @@ <line x1="0" y1="31.68" x2="10.56" y2="31.68" class="solid"></line> <line x1="13.200001" y1="26.400002" x2="29.04" y2="26.400002" class="solid"></line> </g> + <g> + <line x1="39.600002" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="31.68" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="31.68" class="solid"></line> + <line x1="50.160004" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <path d="M 58.08,10.56 A 10.56,10.56 0,0,1 58.08,21.12" class="nofill"></path> + <line x1="39.600002" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,1 58.08,31.68" class="nofill"></path> + </g> + <g> + <line x1="73.920006" y1="10.56" x2="84.48" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <line x1="84.48" y1="10.56" x2="79.200005" y2="21.12" class="solid"></line> + <line x1="68.64" y1="21.12" x2="73.920006" y2="31.68" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="84.48" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/outline/doubleshorts.flf b/static/db/jave/open/doubleshorts.flf similarity index 100% rename from static/db/jave/outline/doubleshorts.flf rename to static/db/jave/open/doubleshorts.flf diff --git a/static/db/jave/outline/doubleshorts.svg b/static/db/jave/open/doubleshorts.svg similarity index 60% rename from static/db/jave/outline/doubleshorts.svg rename to static/db/jave/open/doubleshorts.svg index 1d3b873feac492dc3e702ccc7067a7f3429fedfb..33567a3555a4038197b1c22ed0665183641e7500 100644 --- a/static/db/jave/outline/doubleshorts.svg +++ b/static/db/jave/open/doubleshorts.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,12 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="95.04" height="42.24"></rect> <line x1="10.56" y1="14.52" x2="15.84" y2="14.52" class="solid"></line> <line x1="10.56" y1="17.16" x2="15.84" y2="17.16" class="solid"></line> + <line x1="42.24" y1="14.52" x2="47.52" y2="14.52" class="solid"></line> + <line x1="42.24" y1="17.16" x2="47.52" y2="17.16" class="solid"></line> + <path d="M 52.800003,21.12 A 10.56,10.56 0,0,1 52.800003,31.68" class="nofill"></path> <g> <line x1="2.64" y1="10.56" x2="23.76" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="31.68" class="solid"></line> @@ -105,4 +125,22 @@ <line x1="18.480001" y1="10.56" x2="18.480001" y2="31.68" class="solid"></line> <line x1="23.76" y1="10.56" x2="23.76" y2="31.68" class="solid"></line> </g> + <g> + <line x1="31.68" y1="10.56" x2="52.800003" y2="10.56" class="solid"></line> + <line x1="34.32" y1="10.56" x2="34.32" y2="31.68" class="solid"></line> + <line x1="39.600002" y1="10.56" x2="39.600002" y2="31.68" class="solid"></line> + <line x1="39.600002" y1="31.68" x2="47.52" y2="31.68" class="solid"></line> + <path d="M 47.52,10.56 A 10.56,10.56 0,0,1 47.52,21.12" class="nofill"></path> + <path d="M 47.52,21.12 A 10.56,10.56 0,0,1 47.52,31.68" class="nofill"></path> + </g> + <g> + <line x1="68.64" y1="10.56" x2="89.76" y2="10.56" class="solid"></line> + <path d="M 68.64,10.56 A 10.56,10.56 0,0,0 68.64,21.12" class="nofill"></path> + <line x1="68.64" y1="21.12" x2="73.920006" y2="31.68" class="solid"></line> + </g> + <g> + <path d="M 73.920006,10.56 A 10.56,10.56 0,0,0 73.920006,21.12" class="nofill"></path> + <line x1="73.920006" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> + <line x1="79.200005" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/effect/funface.flf b/static/db/jave/open/funface.flf similarity index 100% rename from static/db/jave/effect/funface.flf rename to static/db/jave/open/funface.flf diff --git a/static/db/jave/open/funface.svg b/static/db/jave/open/funface.svg new file mode 100644 index 0000000000000000000000000000000000000000..2fafc3950b72a3e2b5dea235c23abbf431fafa46 --- /dev/null +++ b/static/db/jave/open/funface.svg @@ -0,0 +1,207 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="116.16" height="84.48"></rect> + <text x="85.8" y="7.92" >c</text> + <text x="101.64001" y="7.92" >c</text> + <line x1="21.12" y1="10.56" x2="13.200001" y2="26.400002" class="solid end_marked_open_circle"></line> + <path d="M 21.12,10.56 A 10.56,10.56 0,0,1 21.12,21.12" class="nofill"></path> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,0 89.76,21.12" class="nofill"></path> + <text x="91.08" y="18.480001" >OO</text> + <path d="M 100.32001,10.56 A 10.56,10.56 0,0,1 100.32001,21.12" class="nofill"></path> + <path d="M 10.56,21.12 A 10.56,10.56 0,0,0 10.56,31.68" class="nofill"></path> + <text x="27.720001" y="29.04" >O</text> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> + <text x="48.84" y="29.04" >`</text> + <text x="75.240005" y="29.04" >,'</text> + <path d="M 105.600006,21.12 A 10.56,10.56 0,0,1 105.600006,31.68" class="nofill"></path> + <text x="38.280003" y="39.600002" >|</text> + <text x="54.120003" y="39.600002" >`</text> + <text x="6.6000004" y="50.160004" >|</text> + <text x="33" y="50.160004" >|</text> + <line x1="39.600002" y1="42.24" x2="39.600002" y2="52.800003" class="solid"></line> + <path d="M 50.160004,42.24 A 7.92,7.92 0,0,0 50.160004,52.800003" class="nofill"></path> + <line x1="52.800003" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <path d="M 60.72,42.24 A 7.92,7.92 0,0,1 60.72,52.800003" class="nofill"></path> + <line x1="10.56" y1="52.800003" x2="5.28" y2="63.36" class="solid"></line> + <text x="11.88" y="60.72" >,</text> + <line x1="34.32" y1="52.800003" x2="34.32" y2="66" class="solid"></line> + <text x="38.280003" y="60.72" >(.'</text> + <text x="75.240005" y="60.72" >.</text> + <line x1="0" y1="68.64" x2="5.28" y2="68.64" class="solid"></line> + <text x="6.6000004" y="71.28001" >'</text> + <text x="27.720001" y="71.28001" >'</text> + <text x="43.56" y="71.28001" >)</text> + <text x="80.520004" y="71.28001" >`</text> + <line x1="84.48" y1="68.64" x2="89.76" y2="68.64" class="solid"></line> + <text x="91.08" y="71.28001" >.</text> + <g> + <line x1="42.24" y1="10.56" x2="50.160004" y2="10.56" class="solid"></line> + <line x1="42.24" y1="10.56" x2="36.960003" y2="21.12" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="21.12" class="solid"></line> + <line x1="50.160004" y1="10.56" x2="50.160004" y2="15.84" class="solid"></line> + <line x1="50.160004" y1="15.84" x2="42.24" y2="31.68" class="solid"></line> + </g> + <g> + <line x1="50.160004" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <line x1="52.800003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,1 58.08,31.68" class="nofill"></path> + </g> + <g> + <path d="M 15.84,21.12 A 10.56,10.56 0,0,1 15.84,31.68" class="nofill"></path> + <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 26.400002,21.12 A 10.56,10.56 0,0,0 26.400002,31.68" class="nofill"></path> + <line x1="26.400002" y1="31.68" x2="31.68" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 89.76,26.400002 A 5.28,5.28 0,0,0 85.8,29.04" class="nofill"></path> + <line x1="85.8" y1="29.04" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="89.76" y1="26.400002" x2="100.32001" y2="26.400002" class="solid"></line> + <path d="M 100.32001,26.400002 A 5.28,5.28 0,0,1 104.28001,29.04" class="nofill"></path> + <line x1="104.28001" y1="29.04" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + <line x1="100.32001" y1="63.36" x2="99.00001" y2="66" class="solid"></line> + <path d="M 99.00001,66 A 5.28,5.28 0,0,1 95.04,68.64" class="nofill"></path> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="97.68" y1="31.68" x2="97.68" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="21.12" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> + <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> + <path d="M 15.84,42.24 A 10.56,10.56 0,0,0 15.84,52.800003" class="nofill"></path> + <line x1="15.84" y1="52.800003" x2="26.400002" y2="52.800003" class="solid"></line> + <path d="M 26.400002,42.24 A 10.56,10.56 0,0,1 26.400002,52.800003" class="nofill"></path> + </g> + <g> + <path d="M 58.08,36.960003 A 5.28,5.28 0,0,1 62.04,39.600002" class="nofill"></path> + <line x1="62.04" y1="39.600002" x2="63.36" y2="42.24" class="solid"></line> + <path d="M 63.36,42.24 A 10.56,10.56 0,0,1 63.36,52.800003" class="nofill"></path> + <line x1="63.36" y1="52.800003" x2="62.04" y2="55.440002" class="solid"></line> + <line x1="52.800003" y1="58.08" x2="58.08" y2="58.08" class="solid"></line> + <path d="M 62.04,55.440002 A 5.28,5.28 0,0,1 58.08,58.08" class="nofill"></path> + </g> + <g> + <line x1="73.920006" y1="31.68" x2="71.28001" y2="36.960003" class="solid"></line> + <line x1="71.28001" y1="36.960003" x2="71.28001" y2="55.440002" class="solid"></line> + </g> + <g> + <line x1="15.84" y1="58.08" x2="23.76" y2="58.08" class="solid"></line> + <path d="M 23.76,58.08 A 5.28,5.28 0,0,1 29.04,63.36" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/effect/funfaces.flf b/static/db/jave/open/funfaces.flf similarity index 100% rename from static/db/jave/effect/funfaces.flf rename to static/db/jave/open/funfaces.flf diff --git a/static/db/jave/open/funfaces.svg b/static/db/jave/open/funfaces.svg new file mode 100644 index 0000000000000000000000000000000000000000..397cc1be2037532559201aa58360c0b5bd072655 --- /dev/null +++ b/static/db/jave/open/funfaces.svg @@ -0,0 +1,209 @@ +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 2; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,0 0,4 4,2 0,0"></polygon> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled"></circle> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled"></circle> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled"></circle> + </marker> + </defs> + <rect class="backdrop" x="0" y="0" width="116.16" height="84.48"></rect> + <text x="85.8" y="7.92" >c</text> + <text x="101.64001" y="7.92" >c</text> + <line x1="21.12" y1="10.56" x2="13.200001" y2="26.400002" class="solid end_marked_open_circle"></line> + <path d="M 21.12,10.56 A 10.56,10.56 0,0,1 21.12,21.12" class="nofill"></path> + <path d="M 89.76,10.56 A 10.56,10.56 0,0,0 89.76,21.12" class="nofill"></path> + <text x="91.08" y="18.480001" >OO</text> + <path d="M 100.32001,10.56 A 10.56,10.56 0,0,1 100.32001,21.12" class="nofill"></path> + <path d="M 10.56,21.12 A 10.56,10.56 0,0,0 10.56,31.68" class="nofill"></path> + <text x="27.720001" y="29.04" >O</text> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> + <line x1="43.56" y1="29.04" x2="44.88" y2="26.400002" class="solid end_marked_big_open_circle"></line> + <path d="M 47.52,21.12 A 10.56,10.56 0,0,1 47.52,31.68" class="nofill"></path> + <text x="59.4" y="29.04" >O</text> + <text x="75.240005" y="29.04" >,'</text> + <path d="M 105.600006,21.12 A 10.56,10.56 0,0,1 105.600006,31.68" class="nofill"></path> + <text x="6.6000004" y="50.160004" >|</text> + <line x1="10.56" y1="52.800003" x2="5.28" y2="63.36" class="solid"></line> + <text x="11.88" y="60.72" >,</text> + <text x="59.4" y="60.72" >)</text> + <text x="75.240005" y="60.72" >.</text> + <line x1="0" y1="68.64" x2="5.28" y2="68.64" class="solid"></line> + <text x="6.6000004" y="71.28001" >'</text> + <text x="27.720001" y="71.28001" >'</text> + <text x="38.280003" y="71.28001" >(.</text> + <text x="80.520004" y="71.28001" >`</text> + <line x1="84.48" y1="68.64" x2="89.76" y2="68.64" class="solid"></line> + <text x="91.08" y="71.28001" >.</text> + <g> + <line x1="42.24" y1="10.56" x2="58.08" y2="10.56" class="solid"></line> + <path d="M 42.24,10.56 A 10.56,10.56 0,0,0 42.24,21.12" class="nofill"></path> + <line x1="42.24" y1="21.12" x2="58.08" y2="21.12" class="solid"></line> + <path d="M 58.08,10.56 A 10.56,10.56 0,0,1 58.08,21.12" class="nofill"></path> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,0 42.24,31.68" class="nofill"></path> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <line x1="42.24" y1="31.68" x2="39.600002" y2="36.960003" class="solid"></line> + <line x1="39.600002" y1="36.960003" x2="39.600002" y2="63.36" class="solid"></line> + <line x1="50.160004" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> + <line x1="58.08" y1="31.68" x2="63.36" y2="42.24" class="solid"></line> + <line x1="50.160004" y1="42.24" x2="50.160004" y2="66" class="solid"></line> + <line x1="50.160004" y1="52.800003" x2="58.08" y2="52.800003" class="solid"></line> + <path d="M 58.08,42.24 A 10.56,10.56 0,0,1 58.08,52.800003" class="nofill"></path> + <path d="M 63.36,42.24 A 10.56,10.56 0,0,1 63.36,52.800003" class="nofill"></path> + <line x1="50.160004" y1="63.36" x2="58.08" y2="63.36" class="solid"></line> + <path d="M 63.36,52.800003 A 10.56,10.56 0,0,1 63.36,63.36" class="nofill"></path> + <path d="M 50.160004,66 A 2.64,2.64 0,0,0 52.800003,68.64" class="nofill"></path> + <line x1="52.800003" y1="68.64" x2="58.08" y2="68.64" class="solid"></line> + <line x1="63.36" y1="63.36" x2="62.04" y2="66" class="solid"></line> + <path d="M 62.04,66 A 5.28,5.28 0,0,1 58.08,68.64" class="nofill"></path> + </g> + <g> + <line x1="63.36" y1="21.12" x2="73.920006" y2="21.12" class="solid"></line> + <path d="M 63.36,21.12 A 10.56,10.56 0,0,1 63.36,31.68" class="nofill"></path> + </g> + <g> + <path d="M 15.84,21.12 A 10.56,10.56 0,0,1 15.84,31.68" class="nofill"></path> + <line x1="15.84" y1="31.68" x2="10.56" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 26.400002,21.12 A 10.56,10.56 0,0,0 26.400002,31.68" class="nofill"></path> + <line x1="26.400002" y1="31.68" x2="34.32" y2="47.52" class="solid"></line> + <line x1="36.960003" y1="42.24" x2="34.32" y2="47.52" class="solid"></line> + <line x1="34.32" y1="47.52" x2="34.32" y2="66" class="solid"></line> + </g> + <g> + <path d="M 89.76,26.400002 A 5.28,5.28 0,0,0 85.8,29.04" class="nofill"></path> + <line x1="85.8" y1="29.04" x2="79.200005" y2="42.24" class="solid"></line> + <line x1="89.76" y1="26.400002" x2="100.32001" y2="26.400002" class="solid"></line> + <path d="M 100.32001,26.400002 A 5.28,5.28 0,0,1 104.28001,29.04" class="nofill"></path> + <line x1="104.28001" y1="29.04" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="52.800003" x2="100.32001" y2="52.800003" class="solid"></line> + <path d="M 100.32001,52.800003 A 10.56,10.56 0,0,1 100.32001,63.36" class="nofill"></path> + <line x1="100.32001" y1="63.36" x2="99.00001" y2="66" class="solid"></line> + <path d="M 99.00001,66 A 5.28,5.28 0,0,1 95.04,68.64" class="nofill"></path> + <line x1="89.76" y1="31.68" x2="84.48" y2="42.24" class="solid"></line> + <line x1="84.48" y1="42.24" x2="110.880005" y2="42.24" class="solid"></line> + <line x1="97.68" y1="31.68" x2="97.68" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="21.12" y1="31.68" x2="15.84" y2="42.24" class="solid"></line> + <line x1="21.12" y1="31.68" x2="26.400002" y2="42.24" class="solid"></line> + <path d="M 15.84,42.24 A 10.56,10.56 0,0,0 15.84,52.800003" class="nofill"></path> + <line x1="15.84" y1="52.800003" x2="26.400002" y2="52.800003" class="solid"></line> + <path d="M 26.400002,42.24 A 10.56,10.56 0,0,1 26.400002,52.800003" class="nofill"></path> + </g> + <g> + <line x1="73.920006" y1="31.68" x2="71.28001" y2="36.960003" class="solid"></line> + <line x1="71.28001" y1="36.960003" x2="71.28001" y2="55.440002" class="solid"></line> + </g> + <g> + <line x1="15.84" y1="58.08" x2="23.76" y2="58.08" class="solid"></line> + <path d="M 23.76,58.08 A 5.28,5.28 0,0,1 29.04,63.36" class="nofill"></path> + </g> +</svg> diff --git a/static/db/jave/outline/amcrazo2.svg b/static/db/jave/outline/amcrazo2.svg deleted file mode 100644 index 0413d7056a70030aefd698db99e1388b1bcede63..0000000000000000000000000000000000000000 --- a/static/db/jave/outline/amcrazo2.svg +++ /dev/null @@ -1,121 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="95.04"></rect> - <line x1="18.480001" y1="7.92" x2="18.480001" y2="84.48" class="solid"></line> - <line x1="29.04" y1="7.92" x2="29.04" y2="84.48" class="solid"></line> - <line x1="21.12" y1="14.52" x2="26.400002" y2="14.52" class="solid"></line> - <line x1="21.12" y1="17.16" x2="26.400002" y2="17.16" class="solid"></line> - <text x="33" y="18.480001" >`</text> - <line x1="21.12" y1="35.640003" x2="26.400002" y2="35.640003" class="solid"></line> - <line x1="21.12" y1="38.280003" x2="26.400002" y2="38.280003" class="solid"></line> - <text x="11.88" y="81.840004" >.</text> - <text x="33" y="81.840004" >..</text> - <g> - <path d="M 5.28,15.84 A 2.64,2.64 0,0,0 2.64,18.480001" class="nofill"></path> - <line x1="2.64" y1="18.480001" x2="2.64" y2="76.560005" class="solid"></line> - <line x1="5.28" y1="15.84" x2="13.200001" y2="15.84" class="solid"></line> - <path d="M 18.480001,10.56 A 5.28,5.28 0,0,1 13.200001,15.84" class="nofill"></path> - <path d="M 2.64,76.560005 A 2.64,2.64 0,0,0 5.28,79.200005" class="nofill"></path> - <line x1="5.28" y1="79.200005" x2="10.56" y2="79.200005" class="solid"></line> - </g> - <g> - <line x1="36.960003" y1="15.84" x2="42.24" y2="15.84" class="solid"></line> - <path d="M 42.24,15.84 A 2.64,2.64 0,0,1 44.88,18.480001" class="nofill"></path> - <line x1="44.88" y1="18.480001" x2="44.88" y2="84.48" class="solid"></line> - </g> -</svg> diff --git a/static/db/jave/outline/amcrazor.svg b/static/db/jave/outline/amcrazor.svg deleted file mode 100644 index 47aae71869907bd17ac1ef884798485e182c9ee8..0000000000000000000000000000000000000000 --- a/static/db/jave/outline/amcrazor.svg +++ /dev/null @@ -1,117 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> - <line x1="18.480001" y1="10.56" x2="2.64" y2="26.400002" class="broken"></line> - <text x="17.16" y="18.480001" >'</text> - <line x1="26.400002" y1="14.52" x2="31.68" y2="14.52" class="solid"></line> - <line x1="26.400002" y1="17.16" x2="31.68" y2="17.16" class="solid"></line> - <text x="38.280003" y="18.480001" >`</text> - <line x1="39.600002" y1="10.56" x2="55.440002" y2="26.400002" class="broken"></line> - <line x1="26.400002" y1="35.640003" x2="31.68" y2="35.640003" class="solid"></line> - <line x1="26.400002" y1="38.280003" x2="31.68" y2="38.280003" class="solid"></line> - <g> - <line x1="23.76" y1="10.56" x2="23.76" y2="63.36" class="solid"></line> - <line x1="2.64" y1="29.04" x2="2.64" y2="63.36" class="solid"></line> - <line x1="2.64" y1="63.36" x2="23.76" y2="63.36" class="solid"></line> - </g> - <g> - <line x1="34.32" y1="10.56" x2="34.32" y2="63.36" class="solid"></line> - <line x1="55.440002" y1="29.04" x2="55.440002" y2="63.36" class="solid"></line> - <line x1="34.32" y1="63.36" x2="55.440002" y2="63.36" class="solid"></line> - </g> -</svg> diff --git a/static/db/jave/outline/amcthin.svg b/static/db/jave/outline/amcthin.svg deleted file mode 100644 index 097e141c2eb378cc861df39f423e6e6985ce7c96..0000000000000000000000000000000000000000 --- a/static/db/jave/outline/amcthin.svg +++ /dev/null @@ -1,109 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { - stroke: black; - stroke-width: 2; - stroke-opacity: 1; - fill-opacity: 1; - stroke-linecap: round; - stroke-linejoin: miter; -} - -.svgbob text { - white-space: pre; - fill: black; - font-family: Iosevka Fixed, monospace; - font-size: 14px; -} - -.svgbob rect.backdrop { - stroke: none; - fill: white; -} - -.svgbob .broken { - stroke-dasharray: 8; -} - -.svgbob .filled { - fill: black; -} - -.svgbob .bg_filled { - fill: white; - stroke-width: 1; -} - -.svgbob .nofill { - fill: white; -} - -.svgbob .end_marked_arrow { - marker-end: url(#arrow); -} - -.svgbob .start_marked_arrow { - marker-start: url(#arrow); -} - -.svgbob .end_marked_diamond { - marker-end: url(#diamond); -} - -.svgbob .start_marked_diamond { - marker-start: url(#diamond); -} - -.svgbob .end_marked_circle { - marker-end: url(#circle); -} - -.svgbob .start_marked_circle { - marker-start: url(#circle); -} - -.svgbob .end_marked_open_circle { - marker-end: url(#open_circle); -} - -.svgbob .start_marked_open_circle { - marker-start: url(#open_circle); -} - -.svgbob .end_marked_big_open_circle { - marker-end: url(#big_open_circle); -} - -.svgbob .start_marked_big_open_circle { - marker-start: url(#big_open_circle); -} - -</style> - <defs> - <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,0 0,4 4,2 0,0"></polygon> - </marker> - <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <polygon points="0,2 2,0 4,2 2,4 0,2"></polygon> - </marker> - <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="filled"></circle> - </marker> - <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="2" class="bg_filled"></circle> - </marker> - <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> - <circle cx="4" cy="4" r="3" class="bg_filled"></circle> - </marker> - </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="73.920006"></rect> - <rect x="2.64" y="5.28" width="10.56" height="52.800003" class="solid nofill" rx="2.64"></rect> - <rect x="34.32" y="5.28" width="10.560001" height="52.800003" class="solid nofill" rx="2.64"></rect> - <text x="17.16" y="7.92" >.</text> - <line x1="21.12" y1="5.28" x2="26.400002" y2="5.28" class="solid"></line> - <text x="27.720001" y="7.92" >.</text> - <line x1="21.12" y1="15.84" x2="26.400002" y2="15.84" class="broken"></line> - <text x="17.16" y="29.04" >.</text> - <line x1="21.12" y1="26.400002" x2="26.400002" y2="26.400002" class="solid"></line> - <text x="27.720001" y="29.04" >.</text> - <line x1="21.12" y1="36.960003" x2="26.400002" y2="36.960003" class="broken"></line> -</svg> diff --git a/static/db/jave/pattern/arrows.svg b/static/db/jave/pattern/arrows.svg index d18e8c49d820b4b7084650b7c104c08de90e78e9..c90adc7d938704c362c66e884f9bb2b6112cfb8b 100644 --- a/static/db/jave/pattern/arrows.svg +++ b/static/db/jave/pattern/arrows.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <text x="33" y="7.92" >></text> <polygon points="36.960003,2.64 42.24,5.28 36.960003,7.92" class="filled"></polygon> <text x="27.720001" y="18.480001" >></text> @@ -141,4 +158,68 @@ <line x1="63.36" y1="67.32" x2="68.64" y2="67.32" class="solid"></line> <line x1="63.36" y1="69.96" x2="68.64" y2="69.96" class="solid"></line> <text x="69.96" y="71.28001" >></text> + <text x="80.520004" y="7.92" >></text> + <line x1="84.48" y1="3.96" x2="89.76" y2="3.96" class="solid"></line> + <line x1="84.48" y1="6.6000004" x2="89.76" y2="6.6000004" class="solid"></line> + <text x="91.08" y="7.92" >></text> + <text x="80.520004" y="18.480001" >></text> + <line x1="84.48" y1="14.52" x2="89.76" y2="14.52" class="solid"></line> + <line x1="84.48" y1="17.16" x2="89.76" y2="17.16" class="solid"></line> + <text x="91.08" y="18.480001" >></text> + <text x="80.520004" y="29.04" >></text> + <line x1="84.48" y1="25.080002" x2="89.76" y2="25.080002" class="solid"></line> + <line x1="84.48" y1="27.720001" x2="89.76" y2="27.720001" class="solid"></line> + <text x="91.08" y="29.04" >></text> + <text x="80.520004" y="39.600002" >></text> + <line x1="84.48" y1="35.640003" x2="89.76" y2="35.640003" class="solid"></line> + <line x1="84.48" y1="38.280003" x2="89.76" y2="38.280003" class="solid"></line> + <text x="91.08" y="39.600002" >></text> + <polygon points="95.04,34.32 100.32001,36.960003 95.04,39.600002" class="filled"></polygon> + <line x1="100.32001" y1="35.640003" x2="110.880005" y2="35.640003" class="solid"></line> + <line x1="100.32001" y1="38.280003" x2="110.880005" y2="38.280003" class="solid"></line> + <text x="112.200005" y="39.600002" >></text> + <text x="80.520004" y="50.160004" >></text> + <line x1="84.48" y1="46.2" x2="89.76" y2="46.2" class="solid"></line> + <line x1="84.48" y1="48.84" x2="89.76" y2="48.84" class="solid"></line> + <text x="91.08" y="50.160004" >></text> + <text x="106.920006" y="50.160004" >></text> + <line x1="110.880005" y1="46.2" x2="116.16" y2="46.2" class="solid"></line> + <line x1="110.880005" y1="48.84" x2="116.16" y2="48.84" class="solid"></line> + <text x="117.48" y="50.160004" >></text> + <text x="80.520004" y="60.72" >></text> + <line x1="84.48" y1="56.760002" x2="89.76" y2="56.760002" class="solid"></line> + <line x1="84.48" y1="59.4" x2="89.76" y2="59.4" class="solid"></line> + <text x="91.08" y="60.72" >></text> + <text x="106.920006" y="60.72" >></text> + <line x1="110.880005" y1="56.760002" x2="116.16" y2="56.760002" class="solid"></line> + <line x1="110.880005" y1="59.4" x2="116.16" y2="59.4" class="solid"></line> + <text x="117.48" y="60.72" >></text> + <text x="80.520004" y="71.28001" >></text> + <line x1="84.48" y1="67.32" x2="89.76" y2="67.32" class="solid"></line> + <line x1="84.48" y1="69.96" x2="89.76" y2="69.96" class="solid"></line> + <text x="91.08" y="71.28001" >></text> + <polygon points="95.04,66 100.32001,68.64 95.04,71.28001" class="filled"></polygon> + <line x1="100.32001" y1="67.32" x2="110.880005" y2="67.32" class="solid"></line> + <line x1="100.32001" y1="69.96" x2="110.880005" y2="69.96" class="solid"></line> + <text x="112.200005" y="71.28001" >></text> + <text x="143.88" y="29.04" >></text> + <line x1="147.84001" y1="25.080002" x2="158.40001" y2="25.080002" class="solid"></line> + <line x1="147.84001" y1="27.720001" x2="158.40001" y2="27.720001" class="solid"></line> + <text x="159.72" y="29.04" >></text> + <text x="133.32" y="39.600002" >></text> + <line x1="137.28" y1="35.640003" x2="142.56001" y2="35.640003" class="solid"></line> + <line x1="137.28" y1="38.280003" x2="142.56001" y2="38.280003" class="solid"></line> + <text x="143.88" y="39.600002" >></text> + <text x="128.04001" y="50.160004" >></text> + <line x1="132" y1="46.2" x2="137.28" y2="46.2" class="solid"></line> + <line x1="132" y1="48.84" x2="137.28" y2="48.84" class="solid"></line> + <text x="138.6" y="50.160004" >></text> + <text x="133.32" y="60.72" >></text> + <line x1="137.28" y1="56.760002" x2="142.56001" y2="56.760002" class="solid"></line> + <line x1="137.28" y1="59.4" x2="142.56001" y2="59.4" class="solid"></line> + <text x="143.88" y="60.72" >></text> + <text x="143.88" y="71.28001" >></text> + <line x1="147.84001" y1="67.32" x2="158.40001" y2="67.32" class="solid"></line> + <line x1="147.84001" y1="69.96" x2="158.40001" y2="69.96" class="solid"></line> + <text x="159.72" y="71.28001" >></text> </svg> diff --git a/static/db/jave/pattern/peaksslant.svg b/static/db/jave/pattern/peaksslant.svg index 9b10eec613a95e52d1b9b1d7366e2284d8b237a3..714d7d2843ad9e3520f5528968f889930ea2def0 100644 --- a/static/db/jave/pattern/peaksslant.svg +++ b/static/db/jave/pattern/peaksslant.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="105.600006" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="232.32" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,21 +112,62 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="105.600006" height="73.920006"></rect> - <line x1="0" y1="63.36" x2="73.920006" y2="63.36" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="232.32" height="73.920006"></rect> + <line x1="0" y1="63.36" x2="200.64001" y2="63.36" class="solid"></line> <g> <line x1="26.400002" y1="10.56" x2="52.800003" y2="10.56" class="solid"></line> <line x1="58.08" y1="0" x2="47.52" y2="21.12" class="solid"></line> <line x1="58.08" y1="0" x2="79.200005" y2="42.24" class="solid"></line> - <line x1="79.200005" y1="42.24" x2="84.48" y2="42.24" class="solid"></line> <line x1="68.64" y1="0" x2="58.08" y2="21.12" class="solid"></line> <line x1="68.64" y1="0" x2="84.48" y2="31.68" class="solid"></line> - <line x1="73.920006" y1="10.56" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="110.880005" y1="0" x2="84.48" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="0" x2="132" y2="42.24" class="solid"></line> <line x1="52.800003" y1="10.56" x2="58.08" y2="21.12" class="solid"></line> <line x1="73.920006" y1="10.56" x2="52.800003" y2="52.800003" class="solid"></line> - <line x1="79.200005" y1="21.12" x2="95.04" y2="21.12" class="solid"></line> + <line x1="79.200005" y1="21.12" x2="100.32001" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="116.16" y2="31.68" class="solid"></line> + <line x1="121.44" y1="21.12" x2="174.24" y2="21.12" class="solid"></line> <line x1="79.200005" y1="21.12" x2="63.36" y2="52.800003" class="solid"></line> - <line x1="84.48" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> + <line x1="84.48" y1="31.68" x2="95.04" y2="31.68" class="solid"></line> + <line x1="100.32001" y1="21.12" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="21.12" x2="116.16" y2="31.68" class="solid"></line> + <line x1="132" y1="21.12" x2="116.16" y2="52.800003" class="solid"></line> + <line x1="132" y1="21.12" x2="142.56001" y2="42.24" class="solid"></line> + <line x1="137.28" y1="31.68" x2="158.40001" y2="31.68" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="163.68001" y1="21.12" x2="179.52" y2="52.800003" class="solid"></line> + <line x1="79.200005" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> + <line x1="95.04" y1="31.68" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="121.44" y2="42.24" class="solid"></line> + <line x1="137.28" y1="31.68" x2="132" y2="42.24" class="solid"></line> + <line x1="142.56001" y1="42.24" x2="153.12001" y2="42.24" class="solid"></line> + <line x1="158.40001" y1="31.68" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="174.24" y1="42.24" x2="211.20001" y2="42.24" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="105.600006" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="174.24" y1="42.24" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="184.8" y1="42.24" x2="179.52" y2="52.800003" class="solid"></line> + <line x1="184.8" y1="42.24" x2="190.08" y2="52.800003" class="solid"></line> + <line x1="195.36" y1="42.24" x2="190.08" y2="52.800003" class="solid"></line> + <line x1="195.36" y1="42.24" x2="200.64001" y2="52.800003" class="solid"></line> + <line x1="200.64001" y1="52.800003" x2="205.92001" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="0" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="121.44" y1="0" x2="126.72" y2="10.56" class="solid"></line> + <line x1="126.72" y1="10.56" x2="227.04001" y2="10.56" class="solid"></line> + <line x1="179.52" y1="10.56" x2="158.40001" y2="52.800003" class="solid"></line> + <line x1="179.52" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="190.08" y1="10.56" x2="184.8" y2="21.12" class="solid"></line> + <line x1="190.08" y1="10.56" x2="195.36" y2="21.12" class="solid"></line> + <line x1="200.64001" y1="10.56" x2="195.36" y2="21.12" class="solid"></line> + <line x1="200.64001" y1="10.56" x2="205.92001" y2="21.12" class="solid"></line> + <line x1="211.20001" y1="10.56" x2="205.92001" y2="21.12" class="solid"></line> + <line x1="211.20001" y1="10.56" x2="216.48001" y2="21.12" class="solid"></line> + <line x1="216.48001" y1="21.12" x2="221.76001" y2="21.12" class="solid"></line> + <line x1="174.24" y1="21.12" x2="179.52" y2="31.68" class="solid"></line> + <line x1="179.52" y1="31.68" x2="216.48001" y2="31.68" class="solid"></line> + <line x1="89.76" y1="42.24" x2="95.04" y2="52.800003" class="solid"></line> + <line x1="126.72" y1="52.800003" x2="158.40001" y2="52.800003" class="solid"></line> <line x1="21.12" y1="21.12" x2="36.960003" y2="21.12" class="solid"></line> <line x1="42.24" y1="10.56" x2="21.12" y2="52.800003" class="solid"></line> <line x1="42.24" y1="10.56" x2="47.52" y2="21.12" class="solid"></line> @@ -118,7 +176,7 @@ <line x1="52.800003" y1="31.68" x2="47.52" y2="42.24" class="solid"></line> <line x1="52.800003" y1="31.68" x2="63.36" y2="52.800003" class="solid"></line> <line x1="63.36" y1="31.68" x2="73.920006" y2="52.800003" class="solid"></line> - <line x1="73.920006" y1="52.800003" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="73.920006" y1="52.800003" x2="84.48" y2="52.800003" class="solid"></line> <line x1="15.84" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="26.400002" y1="21.12" x2="10.56" y2="52.800003" class="solid"></line> <line x1="26.400002" y1="21.12" x2="36.960003" y2="42.24" class="solid"></line> diff --git a/static/db/jave/pattern/reverse.svg b/static/db/jave/pattern/reverse.svg index fe1d64047ff9153207ac255b3a12f40adec4ef10..0e3e6614ddee835c7162b1b0692697bb8696a711 100644 --- a/static/db/jave/pattern/reverse.svg +++ b/static/db/jave/pattern/reverse.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="126.72" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="126.72" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,57 +112,97 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="126.72"></rect> - <line x1="0" y1="3.96" x2="52.800003" y2="3.96" class="solid"></line> - <line x1="0" y1="6.6000004" x2="52.800003" y2="6.6000004" class="solid"></line> + <rect class="backdrop" x="0" y="0" width="132" height="126.72"></rect> + <line x1="0" y1="3.96" x2="126.72" y2="3.96" class="solid"></line> + <line x1="0" y1="6.6000004" x2="126.72" y2="6.6000004" class="solid"></line> <line x1="0" y1="14.52" x2="21.12" y2="14.52" class="solid"></line> <line x1="0" y1="17.16" x2="21.12" y2="17.16" class="solid"></line> - <line x1="31.68" y1="14.52" x2="52.800003" y2="14.52" class="solid"></line> - <line x1="31.68" y1="17.16" x2="52.800003" y2="17.16" class="solid"></line> + <line x1="31.68" y1="14.52" x2="58.08" y2="14.52" class="solid"></line> + <line x1="31.68" y1="17.16" x2="58.08" y2="17.16" class="solid"></line> + <line x1="68.64" y1="14.52" x2="126.72" y2="14.52" class="solid"></line> + <line x1="68.64" y1="17.16" x2="126.72" y2="17.16" class="solid"></line> <line x1="0" y1="25.080002" x2="15.84" y2="25.080002" class="solid"></line> <line x1="0" y1="27.720001" x2="15.84" y2="27.720001" class="solid"></line> - <line x1="36.960003" y1="25.080002" x2="52.800003" y2="25.080002" class="solid"></line> - <line x1="36.960003" y1="27.720001" x2="52.800003" y2="27.720001" class="solid"></line> + <line x1="36.960003" y1="25.080002" x2="58.08" y2="25.080002" class="solid"></line> + <line x1="36.960003" y1="27.720001" x2="58.08" y2="27.720001" class="solid"></line> + <line x1="68.64" y1="25.080002" x2="126.72" y2="25.080002" class="solid"></line> + <line x1="68.64" y1="27.720001" x2="126.72" y2="27.720001" class="solid"></line> <line x1="0" y1="35.640003" x2="10.56" y2="35.640003" class="solid"></line> <line x1="0" y1="38.280003" x2="10.56" y2="38.280003" class="solid"></line> - <line x1="42.24" y1="35.640003" x2="52.800003" y2="35.640003" class="solid"></line> - <line x1="42.24" y1="38.280003" x2="52.800003" y2="38.280003" class="solid"></line> + <line x1="42.24" y1="35.640003" x2="58.08" y2="35.640003" class="solid"></line> + <line x1="42.24" y1="38.280003" x2="58.08" y2="38.280003" class="solid"></line> + <line x1="68.64" y1="35.640003" x2="126.72" y2="35.640003" class="solid"></line> + <line x1="68.64" y1="38.280003" x2="126.72" y2="38.280003" class="solid"></line> <line x1="0" y1="46.2" x2="5.28" y2="46.2" class="solid"></line> <line x1="0" y1="48.84" x2="5.28" y2="48.84" class="solid"></line> - <line x1="47.52" y1="46.2" x2="52.800003" y2="46.2" class="solid"></line> - <line x1="47.52" y1="48.84" x2="52.800003" y2="48.84" class="solid"></line> + <line x1="47.52" y1="46.2" x2="58.08" y2="46.2" class="solid"></line> + <line x1="47.52" y1="48.84" x2="58.08" y2="48.84" class="solid"></line> + <line x1="68.64" y1="46.2" x2="100.32001" y2="46.2" class="solid"></line> + <line x1="68.64" y1="48.84" x2="100.32001" y2="48.84" class="solid"></line> + <line x1="116.16" y1="46.2" x2="126.72" y2="46.2" class="solid"></line> + <line x1="116.16" y1="48.84" x2="126.72" y2="48.84" class="solid"></line> <line x1="0" y1="56.760002" x2="5.28" y2="56.760002" class="solid"></line> <line x1="0" y1="59.4" x2="5.28" y2="59.4" class="solid"></line> - <line x1="47.52" y1="56.760002" x2="52.800003" y2="56.760002" class="solid"></line> - <line x1="47.52" y1="59.4" x2="52.800003" y2="59.4" class="solid"></line> + <line x1="47.52" y1="56.760002" x2="58.08" y2="56.760002" class="solid"></line> + <line x1="47.52" y1="59.4" x2="58.08" y2="59.4" class="solid"></line> + <line x1="79.200005" y1="56.760002" x2="95.04" y2="56.760002" class="solid"></line> + <line x1="79.200005" y1="59.4" x2="95.04" y2="59.4" class="solid"></line> + <line x1="105.600006" y1="56.760002" x2="110.880005" y2="56.760002" class="solid"></line> + <line x1="105.600006" y1="59.4" x2="110.880005" y2="59.4" class="solid"></line> + <line x1="121.44" y1="56.760002" x2="126.72" y2="56.760002" class="solid"></line> + <line x1="121.44" y1="59.4" x2="126.72" y2="59.4" class="solid"></line> <line x1="0" y1="67.32" x2="5.28" y2="67.32" class="solid"></line> <line x1="0" y1="69.96" x2="5.28" y2="69.96" class="solid"></line> - <line x1="47.52" y1="67.32" x2="52.800003" y2="67.32" class="solid"></line> - <line x1="47.52" y1="69.96" x2="52.800003" y2="69.96" class="solid"></line> + <line x1="47.52" y1="67.32" x2="58.08" y2="67.32" class="solid"></line> + <line x1="47.52" y1="69.96" x2="58.08" y2="69.96" class="solid"></line> + <line x1="84.48" y1="67.32" x2="95.04" y2="67.32" class="solid"></line> + <line x1="84.48" y1="69.96" x2="95.04" y2="69.96" class="solid"></line> + <line x1="105.600006" y1="67.32" x2="126.72" y2="67.32" class="solid"></line> + <line x1="105.600006" y1="69.96" x2="126.72" y2="69.96" class="solid"></line> <line x1="0" y1="77.880005" x2="5.28" y2="77.880005" class="solid"></line> <line x1="0" y1="80.520004" x2="5.28" y2="80.520004" class="solid"></line> <line x1="15.84" y1="77.880005" x2="36.960003" y2="77.880005" class="solid"></line> <line x1="15.84" y1="80.520004" x2="36.960003" y2="80.520004" class="solid"></line> - <line x1="47.52" y1="77.880005" x2="52.800003" y2="77.880005" class="solid"></line> - <line x1="47.52" y1="80.520004" x2="52.800003" y2="80.520004" class="solid"></line> + <line x1="47.52" y1="77.880005" x2="58.08" y2="77.880005" class="solid"></line> + <line x1="47.52" y1="80.520004" x2="58.08" y2="80.520004" class="solid"></line> + <line x1="84.48" y1="77.880005" x2="95.04" y2="77.880005" class="solid"></line> + <line x1="84.48" y1="80.520004" x2="95.04" y2="80.520004" class="solid"></line> + <line x1="105.600006" y1="77.880005" x2="126.72" y2="77.880005" class="solid"></line> + <line x1="105.600006" y1="80.520004" x2="126.72" y2="80.520004" class="solid"></line> <line x1="0" y1="88.44" x2="5.28" y2="88.44" class="solid"></line> <line x1="0" y1="91.08" x2="5.28" y2="91.08" class="solid"></line> <line x1="15.84" y1="88.44" x2="36.960003" y2="88.44" class="solid"></line> <line x1="15.84" y1="91.08" x2="36.960003" y2="91.08" class="solid"></line> - <line x1="47.52" y1="88.44" x2="52.800003" y2="88.44" class="solid"></line> - <line x1="47.52" y1="91.08" x2="52.800003" y2="91.08" class="solid"></line> + <line x1="47.52" y1="88.44" x2="58.08" y2="88.44" class="solid"></line> + <line x1="47.52" y1="91.08" x2="58.08" y2="91.08" class="solid"></line> + <line x1="84.48" y1="88.44" x2="95.04" y2="88.44" class="solid"></line> + <line x1="84.48" y1="91.08" x2="95.04" y2="91.08" class="solid"></line> + <line x1="105.600006" y1="88.44" x2="110.880005" y2="88.44" class="solid"></line> + <line x1="105.600006" y1="91.08" x2="110.880005" y2="91.08" class="solid"></line> + <line x1="121.44" y1="88.44" x2="126.72" y2="88.44" class="solid"></line> + <line x1="121.44" y1="91.08" x2="126.72" y2="91.08" class="solid"></line> <line x1="0" y1="99.00001" x2="5.28" y2="99.00001" class="solid"></line> <line x1="0" y1="101.64001" x2="5.28" y2="101.64001" class="solid"></line> <line x1="15.84" y1="99.00001" x2="36.960003" y2="99.00001" class="solid"></line> <line x1="15.84" y1="101.64001" x2="36.960003" y2="101.64001" class="solid"></line> - <line x1="47.52" y1="99.00001" x2="52.800003" y2="99.00001" class="solid"></line> - <line x1="47.52" y1="101.64001" x2="52.800003" y2="101.64001" class="solid"></line> - <line x1="0" y1="109.560005" x2="52.800003" y2="109.560005" class="solid"></line> - <line x1="0" y1="112.200005" x2="52.800003" y2="112.200005" class="solid"></line> + <line x1="47.52" y1="99.00001" x2="58.08" y2="99.00001" class="solid"></line> + <line x1="47.52" y1="101.64001" x2="58.08" y2="101.64001" class="solid"></line> + <line x1="79.200005" y1="99.00001" x2="100.32001" y2="99.00001" class="solid"></line> + <line x1="79.200005" y1="101.64001" x2="100.32001" y2="101.64001" class="solid"></line> + <line x1="116.16" y1="99.00001" x2="126.72" y2="99.00001" class="solid"></line> + <line x1="116.16" y1="101.64001" x2="126.72" y2="101.64001" class="solid"></line> + <line x1="0" y1="109.560005" x2="126.72" y2="109.560005" class="solid"></line> + <line x1="0" y1="112.200005" x2="126.72" y2="112.200005" class="solid"></line> <line x1="21.12" y1="35.640003" x2="31.68" y2="35.640003" class="solid"></line> <line x1="21.12" y1="38.280003" x2="31.68" y2="38.280003" class="solid"></line> <line x1="15.84" y1="46.2" x2="36.960003" y2="46.2" class="solid"></line> <line x1="15.84" y1="48.84" x2="36.960003" y2="48.84" class="solid"></line> <line x1="15.84" y1="56.760002" x2="36.960003" y2="56.760002" class="solid"></line> <line x1="15.84" y1="59.4" x2="36.960003" y2="59.4" class="solid"></line> + <line x1="68.64" y1="67.32" x2="73.920006" y2="67.32" class="solid"></line> + <line x1="68.64" y1="69.96" x2="73.920006" y2="69.96" class="solid"></line> + <line x1="68.64" y1="77.880005" x2="73.920006" y2="77.880005" class="solid"></line> + <line x1="68.64" y1="80.520004" x2="73.920006" y2="80.520004" class="solid"></line> + <line x1="68.64" y1="88.44" x2="73.920006" y2="88.44" class="solid"></line> + <line x1="68.64" y1="91.08" x2="73.920006" y2="91.08" class="solid"></line> </svg> diff --git a/static/db/jave/pattern/s-relief.svg b/static/db/jave/pattern/s-relief.svg index 0f7403e0612d2d08ca1c005e7fea97c4f31d6dfb..e4f4fd888c806f3ebb0133d11cbc03e266864b6b 100644 --- a/static/db/jave/pattern/s-relief.svg +++ b/static/db/jave/pattern/s-relief.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="147.84001" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="290.40002" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="147.84001" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="290.40002" height="105.600006"></rect> <g> <line x1="0" y1="10.56" x2="26.400002" y2="10.56" class="solid"></line> <line x1="31.68" y1="0" x2="21.12" y2="21.12" class="solid"></line> @@ -107,23 +124,34 @@ <g> <line x1="36.960003" y1="0" x2="47.52" y2="21.12" class="solid"></line> <line x1="73.920006" y1="0" x2="84.48" y2="21.12" class="solid"></line> - <line x1="79.200005" y1="10.56" x2="100.32001" y2="10.56" class="solid"></line> + <line x1="79.200005" y1="10.56" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="110.880005" y1="0" x2="105.600006" y2="10.56" class="solid"></line> + <line x1="110.880005" y1="0" x2="153.12001" y2="84.48" class="solid"></line> <line x1="84.48" y1="10.56" x2="121.44" y2="84.48" class="solid"></line> <line x1="89.76" y1="10.56" x2="126.72" y2="84.48" class="solid"></line> - <line x1="95.04" y1="21.12" x2="105.600006" y2="21.12" class="solid"></line> + <line x1="95.04" y1="21.12" x2="110.880005" y2="21.12" class="solid"></line> + <line x1="105.600006" y1="10.56" x2="147.84001" y2="95.04" class="solid"></line> + <line x1="116.16" y1="10.56" x2="110.880005" y2="21.12" class="solid"></line> <line x1="84.48" y1="21.12" x2="79.200005" y2="31.68" class="solid"></line> <line x1="89.76" y1="21.12" x2="84.48" y2="31.68" class="solid"></line> <line x1="100.32001" y1="21.12" x2="132" y2="84.48" class="solid"></line> - <line x1="105.600006" y1="31.68" x2="110.880005" y2="31.68" class="solid"></line> - <line x1="110.880005" y1="42.24" x2="116.16" y2="42.24" class="solid"></line> - <line x1="116.16" y1="52.800003" x2="121.44" y2="52.800003" class="solid"></line> + <line x1="105.600006" y1="31.68" x2="116.16" y2="31.68" class="solid"></line> + <line x1="121.44" y1="21.12" x2="116.16" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="42.24" x2="121.44" y2="42.24" class="solid"></line> + <line x1="126.72" y1="31.68" x2="121.44" y2="42.24" class="solid"></line> + <line x1="116.16" y1="52.800003" x2="126.72" y2="52.800003" class="solid"></line> + <line x1="132" y1="42.24" x2="126.72" y2="52.800003" class="solid"></line> <line x1="105.600006" y1="52.800003" x2="100.32001" y2="63.36" class="solid"></line> - <line x1="121.44" y1="63.36" x2="126.72" y2="63.36" class="solid"></line> - <line x1="126.72" y1="73.920006" x2="132" y2="73.920006" class="solid"></line> - <line x1="132" y1="84.48" x2="137.28" y2="84.48" class="solid"></line> + <line x1="121.44" y1="63.36" x2="132" y2="63.36" class="solid"></line> + <line x1="137.28" y1="52.800003" x2="132" y2="63.36" class="solid"></line> + <line x1="126.72" y1="73.920006" x2="137.28" y2="73.920006" class="solid"></line> + <line x1="142.56001" y1="63.36" x2="137.28" y2="73.920006" class="solid"></line> + <line x1="132" y1="84.48" x2="142.56001" y2="84.48" class="solid"></line> + <line x1="147.84001" y1="73.920006" x2="142.56001" y2="84.48" class="solid"></line> <line x1="126.72" y1="84.48" x2="121.44" y2="95.04" class="solid"></line> <line x1="132" y1="84.48" x2="126.72" y2="95.04" class="solid"></line> - <line x1="126.72" y1="95.04" x2="142.56001" y2="95.04" class="solid"></line> + <line x1="126.72" y1="95.04" x2="147.84001" y2="95.04" class="solid"></line> + <line x1="153.12001" y1="84.48" x2="147.84001" y2="95.04" class="solid"></line> <line x1="31.68" y1="10.56" x2="68.64" y2="84.48" class="solid"></line> <line x1="47.52" y1="21.12" x2="42.24" y2="31.68" class="solid"></line> <line x1="47.52" y1="42.24" x2="89.76" y2="42.24" class="solid"></line> @@ -176,6 +204,93 @@ <line x1="68.64" y1="0" x2="79.200005" y2="21.12" class="solid"></line> <line x1="79.200005" y1="21.12" x2="73.920006" y2="31.68" class="solid"></line> </g> + <g> + <line x1="116.16" y1="0" x2="158.40001" y2="84.48" class="solid"></line> + <line x1="158.40001" y1="84.48" x2="153.12001" y2="95.04" class="solid"></line> + </g> + <g> + <line x1="121.44" y1="0" x2="163.68001" y2="84.48" class="solid"></line> + <line x1="126.72" y1="10.56" x2="242.88" y2="10.56" class="solid"></line> + <line x1="132" y1="21.12" x2="248.16" y2="21.12" class="solid"></line> + <line x1="137.28" y1="31.68" x2="253.44" y2="31.68" class="solid"></line> + <line x1="142.56001" y1="42.24" x2="205.92001" y2="42.24" class="solid"></line> + <line x1="211.20001" y1="31.68" x2="200.64001" y2="52.800003" class="solid"></line> + <line x1="211.20001" y1="31.68" x2="221.76001" y2="52.800003" class="solid"></line> + <line x1="216.48001" y1="31.68" x2="221.76001" y2="42.24" class="solid"></line> + <line x1="221.76001" y1="31.68" x2="227.04001" y2="42.24" class="solid"></line> + <line x1="227.04001" y1="31.68" x2="232.32" y2="42.24" class="solid"></line> + <line x1="232.32" y1="31.68" x2="237.6" y2="42.24" class="solid"></line> + <line x1="237.6" y1="31.68" x2="242.88" y2="42.24" class="solid"></line> + <line x1="242.88" y1="31.68" x2="248.16" y2="42.24" class="solid"></line> + <line x1="248.16" y1="31.68" x2="253.44" y2="42.24" class="solid"></line> + <line x1="253.44" y1="42.24" x2="258.72" y2="42.24" class="solid"></line> + <line x1="147.84001" y1="42.24" x2="153.12001" y2="52.800003" class="solid"></line> + <line x1="153.12001" y1="42.24" x2="158.40001" y2="52.800003" class="solid"></line> + <line x1="158.40001" y1="42.24" x2="163.68001" y2="52.800003" class="solid"></line> + <line x1="163.68001" y1="42.24" x2="168.96" y2="52.800003" class="solid"></line> + <line x1="168.96" y1="42.24" x2="190.08" y2="84.48" class="solid"></line> + <line x1="174.24" y1="42.24" x2="195.36" y2="84.48" class="solid"></line> + <line x1="179.52" y1="52.800003" x2="200.64001" y2="52.800003" class="solid"></line> + <line x1="205.92001" y1="42.24" x2="221.76001" y2="73.920006" class="solid"></line> + <line x1="227.04001" y1="42.24" x2="221.76001" y2="52.800003" class="solid"></line> + <line x1="232.32" y1="42.24" x2="227.04001" y2="52.800003" class="solid"></line> + <line x1="237.6" y1="42.24" x2="232.32" y2="52.800003" class="solid"></line> + <line x1="242.88" y1="42.24" x2="237.6" y2="52.800003" class="solid"></line> + <line x1="248.16" y1="42.24" x2="242.88" y2="52.800003" class="solid"></line> + <line x1="253.44" y1="42.24" x2="248.16" y2="52.800003" class="solid"></line> + <line x1="248.16" y1="52.800003" x2="264" y2="52.800003" class="solid"></line> + <line x1="158.40001" y1="52.800003" x2="153.12001" y2="63.36" class="solid"></line> + <line x1="163.68001" y1="52.800003" x2="158.40001" y2="63.36" class="solid"></line> + <line x1="168.96" y1="52.800003" x2="163.68001" y2="63.36" class="solid"></line> + <line x1="174.24" y1="52.800003" x2="168.96" y2="63.36" class="solid"></line> + <line x1="184.8" y1="52.800003" x2="195.36" y2="73.920006" class="solid"></line> + <line x1="190.08" y1="63.36" x2="200.64001" y2="63.36" class="solid"></line> + <line x1="205.92001" y1="52.800003" x2="200.64001" y2="63.36" class="solid"></line> + <line x1="205.92001" y1="52.800003" x2="211.20001" y2="63.36" class="solid"></line> + <line x1="158.40001" y1="73.920006" x2="174.24" y2="73.920006" class="solid"></line> + <line x1="168.96" y1="63.36" x2="179.52" y2="84.48" class="solid"></line> + <line x1="179.52" y1="63.36" x2="174.24" y2="73.920006" class="solid"></line> + <line x1="195.36" y1="73.920006" x2="205.92001" y2="73.920006" class="solid"></line> + <line x1="200.64001" y1="63.36" x2="205.92001" y2="73.920006" class="solid"></line> + <line x1="211.20001" y1="63.36" x2="205.92001" y2="73.920006" class="solid"></line> + <line x1="216.48001" y1="63.36" x2="211.20001" y2="73.920006" class="solid"></line> + <line x1="163.68001" y1="73.920006" x2="168.96" y2="84.48" class="solid"></line> + <line x1="168.96" y1="73.920006" x2="174.24" y2="84.48" class="solid"></line> + <line x1="195.36" y1="84.48" x2="216.48001" y2="84.48" class="solid"></line> + <line x1="211.20001" y1="73.920006" x2="216.48001" y2="84.48" class="solid"></line> + <line x1="221.76001" y1="73.920006" x2="216.48001" y2="84.48" class="solid"></line> + <line x1="163.68001" y1="84.48" x2="158.40001" y2="95.04" class="solid"></line> + <line x1="168.96" y1="84.48" x2="163.68001" y2="95.04" class="solid"></line> + <line x1="174.24" y1="84.48" x2="168.96" y2="95.04" class="solid"></line> + <line x1="179.52" y1="84.48" x2="174.24" y2="95.04" class="solid"></line> + <line x1="190.08" y1="84.48" x2="184.8" y2="95.04" class="solid"></line> + <line x1="195.36" y1="84.48" x2="190.08" y2="95.04" class="solid"></line> + <line x1="190.08" y1="95.04" x2="232.32" y2="95.04" class="solid"></line> + <line x1="211.20001" y1="42.24" x2="227.04001" y2="73.920006" class="solid"></line> + <line x1="221.76001" y1="63.36" x2="269.28" y2="63.36" class="solid"></line> + <line x1="227.04001" y1="63.36" x2="237.6" y2="84.48" class="solid"></line> + <line x1="232.32" y1="73.920006" x2="274.56" y2="73.920006" class="solid"></line> + <line x1="227.04001" y1="73.920006" x2="221.76001" y2="84.48" class="solid"></line> + <line x1="232.32" y1="73.920006" x2="227.04001" y2="84.48" class="solid"></line> + <line x1="237.6" y1="73.920006" x2="242.88" y2="84.48" class="solid"></line> + <line x1="242.88" y1="73.920006" x2="248.16" y2="84.48" class="solid"></line> + <line x1="248.16" y1="73.920006" x2="253.44" y2="84.48" class="solid"></line> + <line x1="253.44" y1="73.920006" x2="258.72" y2="84.48" class="solid"></line> + <line x1="258.72" y1="73.920006" x2="264" y2="84.48" class="solid"></line> + <line x1="264" y1="73.920006" x2="269.28" y2="84.48" class="solid"></line> + <line x1="269.28" y1="73.920006" x2="274.56" y2="84.48" class="solid"></line> + <line x1="274.56" y1="84.48" x2="279.84" y2="84.48" class="solid"></line> + <line x1="227.04001" y1="84.48" x2="232.32" y2="95.04" class="solid"></line> + <line x1="237.6" y1="84.48" x2="232.32" y2="95.04" class="solid"></line> + <line x1="242.88" y1="84.48" x2="237.6" y2="95.04" class="solid"></line> + <line x1="248.16" y1="84.48" x2="242.88" y2="95.04" class="solid"></line> + <line x1="253.44" y1="84.48" x2="248.16" y2="95.04" class="solid"></line> + <line x1="258.72" y1="84.48" x2="253.44" y2="95.04" class="solid"></line> + <line x1="264" y1="84.48" x2="258.72" y2="95.04" class="solid"></line> + <line x1="269.28" y1="84.48" x2="264" y2="95.04" class="solid"></line> + <line x1="274.56" y1="84.48" x2="269.28" y2="95.04" class="solid"></line> + <line x1="269.28" y1="95.04" x2="285.12003" y2="95.04" class="solid"></line> + </g> <g> <line x1="10.56" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> <line x1="26.400002" y1="21.12" x2="21.12" y2="31.68" class="solid"></line> @@ -198,4 +313,8 @@ <line x1="95.04" y1="42.24" x2="100.32001" y2="52.800003" class="solid"></line> <line x1="100.32001" y1="52.800003" x2="95.04" y2="63.36" class="solid"></line> </g> + <g> + <line x1="179.52" y1="73.920006" x2="184.8" y2="84.48" class="solid"></line> + <line x1="184.8" y1="84.48" x2="179.52" y2="95.04" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/pattern/starstrips.svg b/static/db/jave/pattern/starstrips.svg index 5133c61c41de4e1c5a463e46c7942eb2266e968e..2e7539326a3e0e44572f303520267e14f0e2cb7a 100644 --- a/static/db/jave/pattern/starstrips.svg +++ b/static/db/jave/pattern/starstrips.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="95.04" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="195.36" height="95.04" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,16 +112,27 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="68.64" height="95.04"></rect> + <rect class="backdrop" x="0" y="0" width="195.36" height="95.04"></rect> <line x1="15.84" y1="5.28" x2="47.52" y2="5.28" class="solid"></line> + <line x1="63.36" y1="5.28" x2="121.44" y2="5.28" class="solid"></line> + <line x1="126.72" y1="5.28" x2="190.08" y2="5.28" class="solid"></line> <line x1="13.200001" y1="15.84" x2="50.160004" y2="15.84" class="solid"></line> + <line x1="66" y1="15.84" x2="118.8" y2="15.84" class="solid"></line> + <line x1="129.36" y1="15.84" x2="187.44" y2="15.84" class="solid"></line> <line x1="5.28" y1="26.400002" x2="58.08" y2="26.400002" class="solid"></line> + <line x1="63.36" y1="26.400002" x2="84.48" y2="26.400002" class="solid"></line> + <line x1="121.44" y1="26.400002" x2="142.56001" y2="26.400002" class="solid"></line> <line x1="2.64" y1="36.960003" x2="18.480001" y2="36.960003" class="solid"></line> - <line x1="44.88" y1="36.960003" x2="60.72" y2="36.960003" class="solid"></line> - <line x1="0" y1="47.52" x2="63.36" y2="47.52" class="solid"></line> - <line x1="2.64" y1="58.08" x2="60.72" y2="58.08" class="solid"></line> + <line x1="44.88" y1="36.960003" x2="118.8" y2="36.960003" class="solid"></line> + <line x1="129.36" y1="36.960003" x2="139.92" y2="36.960003" class="solid"></line> + <line x1="0" y1="47.52" x2="121.44" y2="47.52" class="solid"></line> + <line x1="126.72" y1="47.52" x2="142.56001" y2="47.52" class="solid"></line> + <line x1="2.64" y1="58.08" x2="81.840004" y2="58.08" class="solid"></line> + <line x1="124.08" y1="58.08" x2="139.92" y2="58.08" class="solid"></line> <line x1="0" y1="68.64" x2="21.12" y2="68.64" class="solid"></line> - <line x1="42.24" y1="68.64" x2="63.36" y2="68.64" class="solid"></line> + <line x1="42.24" y1="68.64" x2="121.44" y2="68.64" class="solid"></line> + <line x1="126.72" y1="68.64" x2="190.08" y2="68.64" class="solid"></line> <line x1="2.64" y1="79.200005" x2="18.480001" y2="79.200005" class="solid"></line> - <line x1="44.88" y1="79.200005" x2="60.72" y2="79.200005" class="solid"></line> + <line x1="44.88" y1="79.200005" x2="118.8" y2="79.200005" class="solid"></line> + <line x1="129.36" y1="79.200005" x2="187.44" y2="79.200005" class="solid"></line> </svg> diff --git a/static/db/jave/pattern/tubular.svg b/static/db/jave/pattern/tubular.svg index 773d6f953c6a33f0ad4f258806d5876edeaa9340..027e7a5603545d8417f2b8756172737be9d48800 100644 --- a/static/db/jave/pattern/tubular.svg +++ b/static/db/jave/pattern/tubular.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,27 +112,57 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <line x1="42.24" y1="5.28" x2="34.32" y2="5.28" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="5.28" x2="81.840004" y2="5.28" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="5.28" x2="95.04" y2="5.28" class="broken"></line> <line x1="36.960003" y1="15.84" x2="29.04" y2="15.84" class="broken end_marked_big_open_circle"></line> <line x1="42.24" y1="15.84" x2="52.800003" y2="15.84" class="broken"></line> + <line x1="89.76" y1="15.84" x2="81.840004" y2="15.84" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="15.84" x2="95.04" y2="15.84" class="broken"></line> <line x1="31.68" y1="26.400002" x2="23.76" y2="26.400002" class="broken end_marked_big_open_circle"></line> <line x1="52.800003" y1="26.400002" x2="44.88" y2="26.400002" class="broken end_marked_big_open_circle"></line> <line x1="52.800003" y1="26.400002" x2="58.08" y2="26.400002" class="broken"></line> + <line x1="89.76" y1="26.400002" x2="81.840004" y2="26.400002" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="26.400002" x2="95.04" y2="26.400002" class="broken"></line> <line x1="26.400002" y1="36.960003" x2="18.480001" y2="36.960003" class="broken end_marked_big_open_circle"></line> <line x1="26.400002" y1="36.960003" x2="31.68" y2="36.960003" class="broken"></line> <line x1="58.08" y1="36.960003" x2="50.160004" y2="36.960003" class="broken end_marked_big_open_circle"></line> <line x1="58.08" y1="36.960003" x2="63.36" y2="36.960003" class="broken"></line> + <line x1="89.76" y1="36.960003" x2="81.840004" y2="36.960003" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="36.960003" x2="95.04" y2="36.960003" class="broken"></line> <line x1="21.12" y1="47.52" x2="13.200001" y2="47.52" class="broken end_marked_big_open_circle"></line> <line x1="21.12" y1="47.52" x2="47.52" y2="47.52" class="broken"></line> <line x1="63.36" y1="47.52" x2="55.440002" y2="47.52" class="broken end_marked_big_open_circle"></line> <line x1="63.36" y1="47.52" x2="68.64" y2="47.52" class="broken"></line> + <line x1="89.76" y1="47.52" x2="81.840004" y2="47.52" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="47.52" x2="95.04" y2="47.52" class="broken"></line> <line x1="15.84" y1="58.08" x2="7.92" y2="58.08" class="broken end_marked_big_open_circle"></line> <line x1="15.84" y1="58.08" x2="21.12" y2="58.08" class="broken"></line> <line x1="68.64" y1="58.08" x2="60.72" y2="58.08" class="broken end_marked_big_open_circle"></line> <line x1="68.64" y1="58.08" x2="73.920006" y2="58.08" class="broken"></line> + <line x1="89.76" y1="58.08" x2="81.840004" y2="58.08" class="broken end_marked_big_open_circle"></line> + <line x1="89.76" y1="58.08" x2="95.04" y2="58.08" class="broken"></line> <line x1="10.56" y1="68.64" x2="2.64" y2="68.64" class="broken end_marked_big_open_circle"></line> <line x1="10.56" y1="68.64" x2="15.84" y2="68.64" class="broken"></line> <line x1="73.920006" y1="68.64" x2="66" y2="68.64" class="broken end_marked_big_open_circle"></line> - <line x1="73.920006" y1="68.64" x2="79.200005" y2="68.64" class="broken"></line> + <line x1="73.920006" y1="68.64" x2="81.840004" y2="68.64" class="broken end_marked_big_open_circle"></line> + <line x1="84.48" y1="68.64" x2="95.04" y2="68.64" class="broken"></line> + <line x1="153.12001" y1="26.400002" x2="145.20001" y2="26.400002" class="broken end_marked_big_open_circle"></line> + <line x1="153.12001" y1="26.400002" x2="163.68001" y2="26.400002" class="broken"></line> + <line x1="110.880005" y1="36.960003" x2="102.96001" y2="36.960003" class="broken end_marked_big_open_circle"></line> + <line x1="110.880005" y1="36.960003" x2="116.16" y2="36.960003" class="broken"></line> + <line x1="142.56001" y1="36.960003" x2="134.64" y2="36.960003" class="broken end_marked_big_open_circle"></line> + <line x1="142.56001" y1="36.960003" x2="147.84001" y2="36.960003" class="broken"></line> + <line x1="121.44" y1="47.52" x2="113.520004" y2="47.52" class="broken end_marked_big_open_circle"></line> + <line x1="121.44" y1="47.52" x2="129.36" y2="47.52" class="broken end_marked_big_open_circle"></line> + <line x1="132" y1="47.52" x2="142.56001" y2="47.52" class="broken"></line> + <line x1="121.44" y1="58.08" x2="113.520004" y2="58.08" class="broken end_marked_big_open_circle"></line> + <line x1="121.44" y1="58.08" x2="126.72" y2="58.08" class="broken"></line> + <line x1="142.56001" y1="58.08" x2="134.64" y2="58.08" class="broken end_marked_big_open_circle"></line> + <line x1="142.56001" y1="58.08" x2="147.84001" y2="58.08" class="broken"></line> + <line x1="110.880005" y1="68.64" x2="102.96001" y2="68.64" class="broken end_marked_big_open_circle"></line> + <line x1="110.880005" y1="68.64" x2="116.16" y2="68.64" class="broken"></line> + <line x1="153.12001" y1="68.64" x2="145.20001" y2="68.64" class="broken end_marked_big_open_circle"></line> + <line x1="153.12001" y1="68.64" x2="163.68001" y2="68.64" class="broken"></line> </svg> diff --git a/static/db/jave/fill/4max.flf b/static/db/jave/rest/4max.flf similarity index 100% rename from static/db/jave/fill/4max.flf rename to static/db/jave/rest/4max.flf diff --git a/static/db/jave/fill/4max.svg b/static/db/jave/rest/4max.svg similarity index 66% rename from static/db/jave/fill/4max.svg rename to static/db/jave/rest/4max.svg index 987da55564f1ccb0dd0d1ba385b6561fde69bce0..a5c5d39354c5ae643965acaf0429ba724bc04ebc 100644 --- a/static/db/jave/fill/4max.svg +++ b/static/db/jave/rest/4max.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="126.72" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="126.72" height="52.800003"></rect> <text x="17.16" y="7.92" >db</text> <text x="11.88" y="18.480001" >dPYb</text> <text x="6.6000004" y="29.04" >dP</text> @@ -103,6 +120,23 @@ <text x="27.720001" y="29.04" >Yb</text> <text x="1.32" y="39.600002" >dP</text> <text x="33" y="39.600002" >Yb</text> + <text x="48.84" y="7.92" >88</text> + <text x="69.96" y="7.92" >Yb</text> + <text x="48.84" y="18.480001" >88</text> + <line x1="58.08" y1="21.12" x2="68.64" y2="21.12" class="solid"></line> + <text x="69.96" y="18.480001" >dP</text> + <text x="48.84" y="29.04" >88</text> + <text x="69.96" y="29.04" >Yb</text> + <text x="48.84" y="39.600002" >88oodP</text> + <text x="91.08" y="7.92" >dP</text> + <text x="85.8" y="18.480001" >dP</text> + <text x="85.8" y="29.04" >Yb</text> + <text x="91.08" y="39.600002" >YboodP</text> + <text x="112.200005" y="7.92" >b8</text> + <text x="112.200005" y="18.480001" >`"</text> + <text x="59.4" y="7.92" ></text> + <text x="101.64001" y="7.92" ></text> + <text x="59.4" y="29.04" ></text> <text x="11.88" y="39.600002" ></text> <text x="22.44" y="39.600002" ></text> </svg> diff --git a/static/db/jave/fill/Georgia11.flf b/static/db/jave/rest/Georgia11.flf similarity index 100% rename from static/db/jave/fill/Georgia11.flf rename to static/db/jave/rest/Georgia11.flf diff --git a/static/db/jave/fill/Georgia11.svg b/static/db/jave/rest/Georgia11.svg similarity index 64% rename from static/db/jave/fill/Georgia11.svg rename to static/db/jave/rest/Georgia11.svg index d2cff7d0bfe4f0381adacfeee2d462372ed523d4..27d555312d883c5f63ebf23d5b3fa2f90e07a22a 100644 --- a/static/db/jave/fill/Georgia11.svg +++ b/static/db/jave/rest/Georgia11.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="174.24" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,32 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="174.24" height="105.600006"></rect> + <text x="75.240005" y="18.480001" >,,</text> <text x="33" y="29.04" >db</text> + <text x="69.96" y="29.04" >*MM</text> <text x="27.720001" y="39.600002" >;MM:</text> + <text x="75.240005" y="39.600002" >MM</text> <text x="22.44" y="50.160004" >,V^MM.</text> + <text x="75.240005" y="50.160004" >MM,dMMb.</text> <text x="17.16" y="60.72" >,M</text> <text x="38.280003" y="60.72" >`MM</text> + <text x="75.240005" y="60.72" >MM</text> + <text x="106.920006" y="60.72" >`Mb</text> <text x="17.16" y="71.28001" >AbmmmqMA</text> + <text x="75.240005" y="71.28001" >MM</text> + <text x="112.200005" y="71.28001" >M8</text> <text x="11.88" y="81.840004" >A'</text> <text x="48.84" y="81.840004" >VML</text> + <text x="75.240005" y="81.840004" >MM.</text> + <text x="106.920006" y="81.840004" >,M9</text> <text x="1.32" y="92.4" >.AMA.</text> - <text x="43.56" y="92.4" >.AMMA.</text> + <text x="43.56" y="92.4" >.AMMA.P^YbmdP'</text> + <text x="133.32" y="50.160004" >,p6"bo</text> + <text x="128.04001" y="60.72" >6M'</text> + <text x="154.44" y="60.72" >OO</text> + <text x="128.04001" y="71.28001" >8M</text> + <text x="128.04001" y="81.840004" >YM.</text> + <text x="165" y="81.840004" >,</text> + <text x="133.32" y="92.4" >YMbmd'</text> </svg> diff --git a/static/db/jave/fill/amc3liv1.flf b/static/db/jave/rest/amc3liv1.flf similarity index 100% rename from static/db/jave/fill/amc3liv1.flf rename to static/db/jave/rest/amc3liv1.flf diff --git a/static/db/jave/fill/amc3liv1.svg b/static/db/jave/rest/amc3liv1.svg similarity index 71% rename from static/db/jave/fill/amc3liv1.svg rename to static/db/jave/rest/amc3liv1.svg index cbbfabd5bfca79be3af94bddbbb8ccf3a7b15d2e..ace23e495116407b91bd316c70a09c84e2ff979f 100644 --- a/static/db/jave/fill/amc3liv1.svg +++ b/static/db/jave/rest/amc3liv1.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="126.72" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,17 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="126.72" height="42.24"></rect> <text x="1.32" y="7.92" >.:;S;:.</text> <text x="1.32" y="18.480001" >S</text> <text x="17.16" y="18.480001" >S</text> <text x="1.32" y="29.04" >`:;S;:'</text> + <text x="43.56" y="7.92" >.:;.;:.</text> + <text x="43.56" y="18.480001" >S</text> + <text x="59.4" y="18.480001" >S</text> + <text x="75.240005" y="18.480001" >S</text> + <text x="43.56" y="29.04" >`:;S;:'</text> + <text x="85.8" y="18.480001" >S</text> + <text x="117.48" y="18.480001" >S</text> + <text x="85.8" y="29.04" >`:;S;:'</text> </svg> diff --git a/static/db/jave/fill/amcaaa01.flf b/static/db/jave/rest/amcaaa01.flf similarity index 100% rename from static/db/jave/fill/amcaaa01.flf rename to static/db/jave/rest/amcaaa01.flf diff --git a/static/db/jave/fill/amcaaa01.svg b/static/db/jave/rest/amcaaa01.svg similarity index 58% rename from static/db/jave/fill/amcaaa01.svg rename to static/db/jave/rest/amcaaa01.svg index 009006e8be434b9a9242b5e0003250cf4b135714..e64a096ed5a70ba1aa02af74577256ff828bafdf 100644 --- a/static/db/jave/fill/amcaaa01.svg +++ b/static/db/jave/rest/amcaaa01.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="158.40001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="163.68001" height="158.40001" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="158.40001"></rect> + <rect class="backdrop" x="0" y="0" width="163.68001" height="158.40001"></rect> <text x="6.6000004" y="7.92" >.S</text> <line x1="15.84" y1="10.56" x2="21.12" y2="10.56" class="solid"></line> <text x="22.44" y="7.92" >SSSs</text> @@ -124,4 +141,44 @@ <text x="38.280003" y="124.08" >S*S</text> <text x="38.280003" y="134.64" >SP</text> <text x="38.280003" y="145.20001" >Y</text> + <text x="69.96" y="7.92" >.S</text> + <line x1="79.200005" y1="10.56" x2="84.48" y2="10.56" class="solid"></line> + <text x="85.8" y="7.92" >SSSs</text> + <text x="64.68" y="18.480001" >.SS</text> + <line x1="79.200005" y1="15.84" x2="84.48" y2="15.84" class="broken"></line> + <text x="85.8" y="18.480001" >SSSSS</text> + <text x="64.68" y="29.04" >S%S</text> + <text x="96.36" y="29.04" >SSSS</text> + <text x="64.68" y="39.600002" >S%S</text> + <text x="101.64001" y="39.600002" >S%S</text> + <text x="64.68" y="50.160004" >S%S</text> + <text x="85.8" y="50.160004" >SSSS%P</text> + <text x="64.68" y="60.72" >S&S</text> + <text x="91.08" y="60.72" >SSSY</text> + <text x="64.68" y="71.28001" >S&S</text> + <text x="101.64001" y="71.28001" >S&S</text> + <text x="64.68" y="81.840004" >S&S</text> + <text x="101.64001" y="81.840004" >S&S</text> + <text x="64.68" y="92.4" >S*S</text> + <text x="101.64001" y="92.4" >S&S</text> + <text x="64.68" y="102.96001" >S*S</text> + <text x="101.64001" y="102.96001" >S*S</text> + <text x="64.68" y="113.520004" >S*S</text> + <text x="85.8" y="113.520004" >SSSSP</text> + <text x="64.68" y="124.08" >S*S</text> + <text x="91.08" y="124.08" >SSY</text> + <text x="64.68" y="134.64" >SP</text> + <text x="64.68" y="145.20001" >Y</text> + <text x="138.6" y="7.92" >sSSs</text> + <text x="133.32" y="18.480001" >d%%SP</text> + <text x="128.04001" y="29.04" >d%S'</text> + <text x="128.04001" y="39.600002" >S%S</text> + <text x="128.04001" y="50.160004" >S&S</text> + <text x="128.04001" y="60.72" >S&S</text> + <text x="128.04001" y="71.28001" >S&S</text> + <text x="128.04001" y="81.840004" >S&S</text> + <text x="128.04001" y="92.4" >S*b</text> + <text x="128.04001" y="102.96001" >S*S.</text> + <text x="133.32" y="113.520004" >SSSbs</text> + <text x="138.6" y="124.08" >YSSP</text> </svg> diff --git a/static/db/jave/fill/amcneko.flf b/static/db/jave/rest/amcneko.flf similarity index 100% rename from static/db/jave/fill/amcneko.flf rename to static/db/jave/rest/amcneko.flf diff --git a/static/db/jave/fill/amcneko.svg b/static/db/jave/rest/amcneko.svg similarity index 57% rename from static/db/jave/fill/amcneko.svg rename to static/db/jave/rest/amcneko.svg index 5a85bee11e73fc2955c067b6f0d1b1b4e2f67c2d..e550905f0d3cc931fc8ba5f8a0a06169edfb5ff3 100644 --- a/static/db/jave/fill/amcneko.svg +++ b/static/db/jave/rest/amcneko.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="190.08" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="190.08" height="105.600006"></rect> <text x="1.32" y="7.92" >.sSSSSs.</text> <text x="1.32" y="18.480001" >SSSSSSSSSs.</text> <text x="1.32" y="29.04" >S</text> @@ -116,4 +133,38 @@ <text x="33" y="81.840004" >SSSSS</text> <text x="1.32" y="92.4" >SSSSS</text> <text x="33" y="92.4" >SSSSS</text> + <text x="64.68" y="18.480001" >.sSSSSs.</text> + <text x="64.68" y="29.04" >S</text> + <text x="75.240005" y="29.04" >SSSSSSSs.</text> + <text x="64.68" y="39.600002" >S</text> + <text x="80.520004" y="39.600002" >SS</text> + <text x="96.36" y="39.600002" >SSSS'</text> + <text x="64.68" y="50.160004" >S</text> + <line x1="71.28001" y1="50.160004" x2="71.28001" y2="52.800003" class="solid"></line> + <line x1="76.560005" y1="50.160004" x2="76.560005" y2="52.800003" class="solid"></line> + <text x="80.520004" y="50.160004" >SSsSSSa.</text> + <text x="64.68" y="60.72" >S:::S</text> + <text x="96.36" y="60.72" >SSSSS</text> + <text x="64.68" y="71.28001" >S;;;S</text> + <text x="96.36" y="71.28001" >SSSSS</text> + <text x="64.68" y="81.840004" >S%%%S</text> + <text x="96.36" y="81.840004" >SSSSS</text> + <text x="64.68" y="92.4" >SSSSSsSSSS'</text> + <text x="128.04001" y="18.480001" >.sSSSSs.</text> + <text x="128.04001" y="29.04" >S</text> + <text x="138.6" y="29.04" >SSSSSSSs.</text> + <text x="128.04001" y="39.600002" >S</text> + <text x="143.88" y="39.600002" >SS</text> + <text x="159.72" y="39.600002" >SSSS'</text> + <text x="128.04001" y="50.160004" >S</text> + <line x1="134.64" y1="50.160004" x2="134.64" y2="52.800003" class="solid"></line> + <line x1="139.92" y1="50.160004" x2="139.92" y2="52.800003" class="solid"></line> + <text x="143.88" y="50.160004" >SS</text> + <text x="128.04001" y="60.72" >S:::S</text> + <text x="159.72" y="60.72" >SSSSS</text> + <text x="128.04001" y="71.28001" >S;;;S</text> + <text x="159.72" y="71.28001" >SSSSS</text> + <text x="128.04001" y="81.840004" >S%%%S</text> + <text x="159.72" y="81.840004" >SSSSS</text> + <text x="128.04001" y="92.4" >SSSSSsSSSSS</text> </svg> diff --git a/static/db/jave/fill/amcslash.flf b/static/db/jave/rest/amcslash.flf similarity index 100% rename from static/db/jave/fill/amcslash.flf rename to static/db/jave/rest/amcslash.flf diff --git a/static/db/jave/fill/amcslash.svg b/static/db/jave/rest/amcslash.svg similarity index 64% rename from static/db/jave/fill/amcslash.svg rename to static/db/jave/rest/amcslash.svg index 3191f7c3ae8c0aee96a0b42b7ffa914c20a91841..42d6dc17ae9a23fa82ea28a424ab826f991bf27b 100644 --- a/static/db/jave/fill/amcslash.svg +++ b/static/db/jave/rest/amcslash.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="105.600006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="105.600006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="105.600006"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="105.600006"></rect> <text x="1.32" y="7.92" >.s5SSSs.</text> <text x="33" y="18.480001" >SS.</text> <text x="33" y="29.04" >S%S</text> @@ -105,6 +122,22 @@ <text x="33" y="71.28001" >`:;</text> <text x="33" y="81.840004" >;,.</text> <text x="33" y="92.4" >;:'</text> + <text x="54.120003" y="18.480001" >.s5SSSs.</text> + <text x="85.8" y="29.04" >SS.</text> + <text x="54.120003" y="39.600002" >sS</text> + <text x="85.8" y="39.600002" >S%S</text> + <text x="54.120003" y="50.160004" >SS</text> + <text x="69.96" y="50.160004" >.sSSS</text> + <text x="54.120003" y="60.72" >SS</text> + <text x="85.8" y="60.72" >S%S</text> + <text x="54.120003" y="71.28001" >SS</text> + <text x="85.8" y="71.28001" >`:;</text> + <text x="54.120003" y="81.840004" >SS</text> + <text x="85.8" y="81.840004" >;,.</text> + <text x="54.120003" y="92.4" >`:;;;;;:'</text> + <text x="106.920006" y="18.480001" >.s5SSSs.</text> + <text x="138.6" y="29.04" >SS.</text> + <text x="138.6" y="39.600002" >`:;</text> <text x="1.32" y="29.04" >sS</text> <text x="1.32" y="39.600002" >SS</text> <text x="1.32" y="50.160004" >SSSs.</text> @@ -112,4 +145,11 @@ <text x="1.32" y="71.28001" >SS</text> <text x="1.32" y="81.840004" >SS</text> <text x="1.32" y="92.4" >:;</text> + <text x="106.920006" y="39.600002" >sS</text> + <text x="106.920006" y="50.160004" >SS</text> + <text x="106.920006" y="60.72" >SS</text> + <text x="106.920006" y="71.28001" >SS</text> + <text x="106.920006" y="81.840004" >SS</text> + <text x="138.6" y="81.840004" >;,.</text> + <text x="106.920006" y="92.4" >`:;;;;;:'</text> </svg> diff --git a/static/db/jave/fill/amctubes.flf b/static/db/jave/rest/amctubes.flf similarity index 100% rename from static/db/jave/fill/amctubes.flf rename to static/db/jave/rest/amctubes.flf diff --git a/static/db/jave/fill/amctubes.svg b/static/db/jave/rest/amctubes.svg similarity index 65% rename from static/db/jave/fill/amctubes.svg rename to static/db/jave/rest/amctubes.svg index 542155904bff91c928f060da29b089868d72fc8f..bfb1cc560342fa797f9d5786dcd36b1dbf80ba7e 100644 --- a/static/db/jave/fill/amctubes.svg +++ b/static/db/jave/rest/amctubes.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="116.16" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="36.960003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="116.16" height="84.48"></rect> <text x="1.32" y="7.92" >d</text> <text x="1.32" y="18.480001" >S</text> <text x="1.32" y="29.04" >S</text> @@ -110,4 +127,25 @@ <text x="27.720001" y="50.160004" >O</text> <text x="27.720001" y="60.72" >O</text> <text x="27.720001" y="71.28001" >P</text> + <text x="38.280003" y="7.92" >d</text> + <text x="38.280003" y="18.480001" >S</text> + <text x="38.280003" y="29.04" >S</text> + <text x="38.280003" y="39.600002" >S</text> + <text x="38.280003" y="50.160004" >S</text> + <text x="38.280003" y="60.72" >S</text> + <text x="38.280003" y="71.28001" >P</text> + <text x="48.84" y="7.92" >ss.</text> + <text x="64.68" y="18.480001" >b</text> + <text x="64.68" y="29.04" >P</text> + <text x="48.84" y="39.600002" >sSS'</text> + <text x="64.68" y="50.160004" >b</text> + <text x="64.68" y="60.72" >P</text> + <text x="48.84" y="71.28001" >`SS</text> + <text x="85.8" y="7.92" >sSSs.</text> + <text x="80.520004" y="18.480001" >S</text> + <text x="75.240005" y="29.04" >S</text> + <text x="75.240005" y="39.600002" >S</text> + <text x="75.240005" y="50.160004" >S</text> + <text x="80.520004" y="60.72" >S</text> + <text x="85.8" y="71.28001" >"sss'</text> </svg> diff --git a/static/db/jave/fill/bolger.flf b/static/db/jave/rest/bolger.flf similarity index 100% rename from static/db/jave/fill/bolger.flf rename to static/db/jave/rest/bolger.flf diff --git a/static/db/jave/fill/bolger.svg b/static/db/jave/rest/bolger.svg similarity index 57% rename from static/db/jave/fill/bolger.svg rename to static/db/jave/rest/bolger.svg index 71307b33f0d2966d6a219e059b27e4218ba7b6f0..cb76bfb95fa84f86d39be650991d658ad6bfe865 100644 --- a/static/db/jave/fill/bolger.svg +++ b/static/db/jave/rest/bolger.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="158.40001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,15 +112,43 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="63.36" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="158.40001" height="73.920006"></rect> <text x="27.720001" y="7.92" >e</text> <text x="22.44" y="18.480001" >d8b</text> <text x="22.44" y="29.04" >Y88b</text> <text x="27.720001" y="39.600002" >Y88b</text> <text x="33" y="50.160004" >Y88b</text> <text x="38.280003" y="60.72" >Y88b</text> + <text x="64.68" y="7.92" >888</text> + <text x="64.68" y="18.480001" >888</text> + <line x1="79.200005" y1="15.84" x2="89.76" y2="15.84" class="broken"></line> + <text x="91.08" y="18.480001" >88e</text> + <text x="64.68" y="29.04" >888</text> + <text x="91.08" y="29.04" >888b</text> + <text x="64.68" y="39.600002" >888</text> + <text x="91.08" y="39.600002" >8888</text> + <text x="64.68" y="50.160004" >888</text> + <text x="91.08" y="50.160004" >888P</text> + <text x="64.68" y="60.72" >888</text> + <line x1="79.200005" y1="58.08" x2="84.48" y2="58.08" class="solid"></line> + <line x1="84.48" y1="63.36" x2="89.76" y2="63.36" class="solid"></line> + <text x="91.08" y="60.72" >88</text> + <text x="122.76" y="18.480001" >e88</text> + <text x="117.48" y="29.04" >d888</text> + <text x="117.48" y="39.600002" >8888</text> + <text x="117.48" y="50.160004" >Y888</text> + <text x="128.04001" y="60.72" >88</text> + <text x="101.64001" y="60.72" > </text> <g> <line x1="21.12" y1="21.12" x2="0" y2="63.36" class="solid"></line> <line x1="5.28" y1="52.800003" x2="31.68" y2="52.800003" class="solid"></line> </g> + <g> + <line x1="137.28" y1="15.84" x2="150.48001" y2="15.84" class="broken"></line> + <line x1="147.84001" y1="10.56" x2="153.12001" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="137.28" y1="63.36" x2="147.84001" y2="63.36" class="solid"></line> + <line x1="153.12001" y1="52.800003" x2="147.84001" y2="63.36" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/fill/defleppard.flf b/static/db/jave/rest/defleppard.flf similarity index 100% rename from static/db/jave/fill/defleppard.flf rename to static/db/jave/rest/defleppard.flf diff --git a/static/db/jave/fill/defleppard.svg b/static/db/jave/rest/defleppard.svg similarity index 61% rename from static/db/jave/fill/defleppard.svg rename to static/db/jave/rest/defleppard.svg index bc3ace744236417635c55b729c0f931d367b531a..cc37cb2e53c65a00dd87cc563ffd4d2430c7ce0d 100644 --- a/static/db/jave/fill/defleppard.svg +++ b/static/db/jave/rest/defleppard.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="168.96" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="179.52" height="168.96" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,71 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="168.96"></rect> + <rect class="backdrop" x="0" y="0" width="179.52" height="168.96"></rect> + <text x="165" y="29.04" >.,</text> + <text x="80.520004" y="39.600002" >.</text> + <text x="159.72" y="39.600002" >,Wt</text> + <text x="80.520004" y="50.160004" >Ef.</text> + <text x="154.44" y="50.160004" >i#D.</text> + <text x="80.520004" y="60.72" >E</text> + <rect x="84.48" y="55.440002" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="60.72" x2="87.12" y2="66" class="solid"></line> + <text x="91.08" y="60.72" >Wi</text> + <text x="149.16" y="60.72" >f#f</text> + <text x="80.520004" y="71.28001" >E</text> + <rect x="84.48" y="66" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="71.28001" x2="87.12" y2="76.560005" class="solid"></line> + <text x="91.08" y="71.28001" >K#D:</text> + <text x="138.6" y="71.28001" >.D#i</text> + <text x="80.520004" y="81.840004" >E</text> + <rect x="84.48" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="81.840004" x2="87.12" y2="87.12" class="solid"></line> + <text x="91.08" y="81.840004" >t,E</text> + <line x1="108.240005" y1="73.920006" x2="108.240005" y2="76.560005" class="solid"></line> + <rect x="105.600006" y="76.560005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="108.240005" y1="81.840004" x2="108.240005" y2="87.12" class="solid"></line> + <text x="112.200005" y="81.840004" >f.</text> + <text x="133.32" y="81.840004" >:KW,</text> + <text x="80.520004" y="92.4" >E</text> + <rect x="84.48" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="92.4" x2="87.12" y2="97.68" class="solid"></line> + <text x="91.08" y="92.4" >WEE</text> + <rect x="105.600006" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="110.880005" y="87.12" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="117.48" y="92.4" >Wt</text> + <text x="133.32" y="92.4" >t#f</text> + <text x="80.520004" y="102.96001" >E</text> + <rect x="84.48" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="102.96001" x2="87.12" y2="108.240005" class="solid"></line> + <rect x="89.76" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <text x="96.36" y="102.96001" >Ei;;;;.</text> + <text x="138.6" y="102.96001" >;</text> + <rect x="142.56001" y="97.68" width="5.279999" height="5.2800064" class="solid filled" rx="0"></rect> + <line x1="145.20001" y1="102.96001" x2="145.20001" y2="105.600006" class="solid"></line> + <text x="149.16" y="102.96001" >G</text> + <text x="80.520004" y="113.520004" >E</text> + <rect x="84.48" y="108.240005" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="113.520004" x2="87.12" y2="118.8" class="solid"></line> + <text x="91.08" y="113.520004" >DWWt</text> + <text x="143.88" y="113.520004" >:KE.</text> + <text x="80.520004" y="124.08" >E</text> + <rect x="84.48" y="118.8" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <line x1="87.12" y1="124.08" x2="87.12" y2="129.36" class="solid"></line> + <text x="91.08" y="124.08" >t</text> + <text x="101.64001" y="124.08" >f#K;</text> + <text x="149.16" y="124.08" >.DW:</text> + <text x="80.520004" y="134.64" >E</text> + <rect x="84.48" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="91.08" y="134.64" >Dfff</text> + <rect x="110.880005" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <rect x="116.16" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="122.76" y="134.64" >E,</text> + <text x="159.72" y="134.64" >L</text> + <line x1="166.32" y1="126.72" x2="166.32" y2="129.36" class="solid"></line> + <rect x="163.68001" y="129.36" width="5.279999" height="5.279999" class="solid filled" rx="0"></rect> + <text x="170.28001" y="134.64" >,</text> + <text x="80.520004" y="145.20001" >jLLLLLLLLL;</text> + <text x="165" y="145.20001" >jt</text> <text x="64.68" y="50.160004" >..</text> <text x="59.4" y="60.72" >;W,</text> <text x="54.120003" y="71.28001" >j</text> diff --git a/static/db/jave/fill/filter.flf b/static/db/jave/rest/filter.flf similarity index 100% rename from static/db/jave/fill/filter.flf rename to static/db/jave/rest/filter.flf diff --git a/static/db/jave/fill/filter.svg b/static/db/jave/rest/filter.svg similarity index 71% rename from static/db/jave/fill/filter.svg rename to static/db/jave/rest/filter.svg index e82298647ac61b6a31f6c07151489900d2d78852..36da202e292e010bd6179ede562569dd15ad6a53 100644 --- a/static/db/jave/fill/filter.svg +++ b/static/db/jave/rest/filter.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="132" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,10 +112,19 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="132" height="52.800003"></rect> <text x="1.32" y="7.92" >,8b.</text> <text x="1.32" y="18.480001" >88'8o</text> <text x="1.32" y="29.04" >88PPY8.</text> <text x="1.32" y="39.600002" >8b</text> <text x="27.720001" y="39.600002" >`Y'</text> + <text x="48.84" y="7.92" >d88PPPo</text> + <text x="48.84" y="18.480001" >888ooo8</text> + <text x="48.84" y="29.04" >888</text> + <text x="80.520004" y="29.04" >8</text> + <text x="48.84" y="39.600002" >888PPPP</text> + <text x="91.08" y="7.92" >doooooo</text> + <text x="91.08" y="18.480001" >d88</text> + <text x="91.08" y="29.04" >d88</text> + <text x="91.08" y="39.600002" >d888888</text> </svg> diff --git a/static/db/jave/fill/georgi16.flf b/static/db/jave/rest/georgi16.flf similarity index 100% rename from static/db/jave/fill/georgi16.flf rename to static/db/jave/rest/georgi16.flf diff --git a/static/db/jave/fill/georgi16.svg b/static/db/jave/rest/georgi16.svg similarity index 61% rename from static/db/jave/fill/georgi16.svg rename to static/db/jave/rest/georgi16.svg index c283f16701fad1651abf4f0e9d290d97d5e089cd..d7a3b9b8a5af1016df479e4241342a60dae26bfe 100644 --- a/static/db/jave/fill/georgi16.svg +++ b/static/db/jave/rest/georgi16.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="147.84001" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="174.24" height="147.84001" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,26 +112,54 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="147.84001"></rect> + <rect class="backdrop" x="0" y="0" width="174.24" height="147.84001"></rect> <line x1="36.960003" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> + <line x1="73.920006" y1="31.68" x2="89.76" y2="31.68" class="solid"></line> <text x="33" y="39.600002" >dM.</text> + <text x="80.520004" y="39.600002" >MM</text> <text x="27.720001" y="50.160004" >,MMb</text> + <text x="80.520004" y="50.160004" >MM</text> <text x="27.720001" y="60.72" >d'YM.</text> + <text x="80.520004" y="60.72" >MM</text> + <line x1="89.76" y1="63.36" x2="110.880005" y2="63.36" class="solid"></line> <text x="22.44" y="71.28001" >,P</text> <text x="38.280003" y="71.28001" >`Mb</text> + <text x="80.520004" y="71.28001" >MMMMMMb</text> <text x="22.44" y="81.840004" >d'</text> <text x="43.56" y="81.840004" >YM.</text> + <text x="80.520004" y="81.840004" >MM'</text> + <text x="106.920006" y="81.840004" >`Mb</text> <text x="17.16" y="92.4" >,P</text> <text x="43.56" y="92.4" >`Mb</text> + <text x="80.520004" y="92.4" >MM</text> + <text x="112.200005" y="92.4" >MM</text> <text x="17.16" y="102.96001" >d'</text> <text x="48.84" y="102.96001" >YM.</text> + <text x="80.520004" y="102.96001" >MM</text> + <text x="112.200005" y="102.96001" >MM</text> <text x="11.88" y="113.520004" >,MMMMMMMMb</text> + <text x="80.520004" y="113.520004" >MM</text> + <text x="112.200005" y="113.520004" >MM</text> <text x="11.88" y="124.08" >d'</text> <text x="54.120003" y="124.08" >YM.</text> + <text x="80.520004" y="124.08" >MM.</text> + <text x="106.920006" y="124.08" >,M9</text> <line x1="0" y1="137.28" x2="5.28" y2="137.28" class="solid"></line> <text x="6.6000004" y="134.64" >dM</text> <line x1="15.84" y1="137.28" x2="21.12" y2="137.28" class="solid"></line> <line x1="47.52" y1="137.28" x2="52.800003" y2="137.28" class="solid"></line> <text x="54.120003" y="134.64" >dMM</text> - <line x1="68.64" y1="137.28" x2="73.920006" y2="137.28" class="solid"></line> + <line x1="68.64" y1="137.28" x2="79.200005" y2="137.28" class="solid"></line> + <text x="80.520004" y="134.64" >MYMMMM9</text> + <line x1="137.28" y1="63.36" x2="158.40001" y2="63.36" class="solid"></line> + <text x="133.32" y="71.28001" >6MMMMb.</text> + <text x="128.04001" y="81.840004" >6M'</text> + <text x="159.72" y="81.840004" >Mb</text> + <text x="128.04001" y="92.4" >MM</text> + <text x="159.72" y="92.4" >`'</text> + <text x="128.04001" y="102.96001" >MM</text> + <text x="128.04001" y="113.520004" >MM</text> + <text x="128.04001" y="124.08" >YM.</text> + <text x="159.72" y="124.08" >d9</text> + <text x="133.32" y="134.64" >YMMMM9</text> </svg> diff --git a/static/db/jave/fill/konto.flf b/static/db/jave/rest/konto.flf similarity index 100% rename from static/db/jave/fill/konto.flf rename to static/db/jave/rest/konto.flf diff --git a/static/db/jave/fill/konto.svg b/static/db/jave/rest/konto.svg similarity index 75% rename from static/db/jave/fill/konto.svg rename to static/db/jave/rest/konto.svg index ee8c8c106b918223c39038e49f8d3eb4eb1c4215..de4218b50e4080fe4780300b051e9f37dd30b330 100644 --- a/static/db/jave/fill/konto.svg +++ b/static/db/jave/rest/konto.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="31.68"></rect> <text x="1.32" y="7.92" >.^.</text> <text x="1.32" y="18.480001" >I^I</text> + <text x="22.44" y="7.92" >I^,.</text> + <text x="22.44" y="18.480001" >I.D</text> + <line x1="39.600002" y1="5.28" x2="50.160004" y2="15.84" class="broken"></line> + <text x="48.84" y="18.480001" >..</text> </svg> diff --git a/static/db/jave/fill/kontoslant.flf b/static/db/jave/rest/kontoslant.flf similarity index 100% rename from static/db/jave/fill/kontoslant.flf rename to static/db/jave/rest/kontoslant.flf diff --git a/static/db/jave/fill/kontoslant.svg b/static/db/jave/rest/kontoslant.svg similarity index 71% rename from static/db/jave/fill/kontoslant.svg rename to static/db/jave/rest/kontoslant.svg index 87afe849cfc4417756af1f25d43f743f067f62dc..d10b345d46c4194e0d1d387ac989a7130349cfb2 100644 --- a/static/db/jave/fill/kontoslant.svg +++ b/static/db/jave/rest/kontoslant.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="31.68" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="31.68" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,14 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="31.68"></rect> + <rect class="backdrop" x="0" y="0" width="52.800003" height="31.68"></rect> <line x1="10.56" y1="0" x2="0" y2="21.12" class="solid"></line> <line x1="10.56" y1="10.56" x2="5.28" y2="21.12" class="solid"></line> <text x="11.88" y="7.92" >1</text> + <line x1="31.68" y1="0" x2="26.400002" y2="10.56" class="solid"></line> + <text x="33" y="7.92" >`</text> + <line x1="15.84" y1="10.56" x2="10.56" y2="21.12" class="solid"></line> + <text x="17.16" y="18.480001" >.I</text> + <text x="38.280003" y="18.480001" >L</text> + <line x1="42.24" y1="15.84" x2="47.52" y2="15.84" class="solid"></line> </svg> diff --git a/static/db/jave/fill/nancyj-improved.flf b/static/db/jave/rest/nancyj-improved.flf similarity index 100% rename from static/db/jave/fill/nancyj-improved.flf rename to static/db/jave/rest/nancyj-improved.flf diff --git a/static/db/jave/fill/nancyj-improved.svg b/static/db/jave/rest/nancyj-improved.svg similarity index 67% rename from static/db/jave/fill/nancyj-improved.svg rename to static/db/jave/rest/nancyj-improved.svg index ab72dcccbbb1a3c545aef4af6e3d3967e5f579e3..c5fcdb1bf2cb8c544ce11835a69ea16efce541ba 100644 --- a/static/db/jave/fill/nancyj-improved.svg +++ b/static/db/jave/rest/nancyj-improved.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="153.12001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="58.08" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="153.12001" height="73.920006"></rect> <text x="6.6000004" y="7.92" >.d888888</text> <text x="1.32" y="18.480001" >d8'</text> <text x="38.280003" y="18.480001" >88</text> @@ -106,4 +123,19 @@ <text x="38.280003" y="50.160004" >88</text> <text x="1.32" y="60.72" >88</text> <text x="38.280003" y="60.72" >88</text> + <text x="59.4" y="7.92" >dP</text> + <text x="59.4" y="18.480001" >88</text> + <text x="59.4" y="29.04" >88d888b.</text> + <text x="59.4" y="39.600002" >88'</text> + <text x="85.8" y="39.600002" >`88</text> + <text x="59.4" y="50.160004" >88.</text> + <text x="85.8" y="50.160004" >.88</text> + <text x="59.4" y="60.72" >88Y8888'</text> + <text x="106.920006" y="29.04" >.d8888b.</text> + <text x="106.920006" y="39.600002" >88'</text> + <text x="133.32" y="39.600002" >`</text> + <text x="106.920006" y="50.160004" >88.</text> + <text x="133.32" y="50.160004" >...</text> + <text x="106.920006" y="60.72" >`88888P'</text> + <text x="138.6" y="39.600002" ></text> </svg> diff --git a/static/db/jave/fill/nscript.flf b/static/db/jave/rest/nscript.flf similarity index 100% rename from static/db/jave/fill/nscript.flf rename to static/db/jave/rest/nscript.flf diff --git a/static/db/jave/fill/nscript.svg b/static/db/jave/rest/nscript.svg similarity index 63% rename from static/db/jave/fill/nscript.svg rename to static/db/jave/rest/nscript.svg index 9976f5215ccd7dcf12e32bd24c44a4e3462a14b1..cbe3b92f08a03c2c107268eea5b00769ea7f8a04 100644 --- a/static/db/jave/fill/nscript.svg +++ b/static/db/jave/rest/nscript.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="116.16" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="216.48001" height="116.16" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="100.32001" height="116.16"></rect> + <rect class="backdrop" x="0" y="0" width="216.48001" height="116.16"></rect> <text x="59.4" y="7.92" >,ggg,</text> <text x="54.120003" y="18.480001" >dP</text> <text x="75.240005" y="18.480001" >8I</text> @@ -107,16 +124,38 @@ <text x="75.240005" y="50.160004" >88</text> <text x="38.280003" y="60.72" >d88888888</text> <line x1="5.28" y1="73.920006" x2="15.84" y2="73.920006" class="solid"></line> - <text x="33" y="71.28001" >,8"</text> - <text x="75.240005" y="71.28001" >88</text> + <text x="33" y="71.28001" >,8</text> <text x="1.32" y="81.840004" >dP"</text> <text x="27.720001" y="81.840004" >,8P</text> - <text x="75.240005" y="81.840004" >Y8</text> <text x="1.32" y="92.4" >Yb,</text> <line x1="15.84" y1="95.04" x2="21.12" y2="95.04" class="solid"></line> <text x="22.44" y="92.4" >,dP</text> - <text x="75.240005" y="92.4" >`8b,</text> - <text x="80.520004" y="102.96001" >`Y8</text> + <text x="101.64001" y="18.480001" >,dPYb,</text> + <text x="101.64001" y="29.04" >IP'`Yb</text> + <text x="101.64001" y="39.600002" >I8</text> + <text x="122.76" y="39.600002" >8I</text> + <text x="101.64001" y="50.160004" >I8</text> + <text x="122.76" y="50.160004" >8'</text> + <text x="101.64001" y="60.72" >I8</text> + <text x="117.48" y="60.72" >dP</text> + <text x="175.56001" y="60.72" >,gggg,</text> + <text x="196.68001" y="71.28001" >"Yb</text> + <text x="75.240005" y="81.840004" >Y8</text> + <text x="101.64001" y="81.840004" >I8P</text> + <text x="75.240005" y="92.4" >`8b,,d8b,</text> + <text x="80.520004" y="102.96001" >`Y88P'</text> + <text x="138.6" y="81.840004" >8I</text> + <text x="133.32" y="92.4" >,8I</text> + <text x="143.88" y="102.96001" >'</text> + <text x="165" y="81.840004" >i8'</text> + <text x="159.72" y="92.4" >,d8,</text> + <line x1="179.52" y1="95.04" x2="184.8" y2="95.04" class="solid"></line> + <line x1="205.92001" y1="95.04" x2="211.20001" y2="95.04" class="solid"></line> + <text x="159.72" y="102.96001" >P</text> + <text x="175.56001" y="102.96001" >Y8888PP</text> <text x="64.68" y="18.480001" ></text> + <text x="43.56" y="71.28001" > 88 I8dP 88gg dP</text> <text x="6.6000004" y="102.96001" >Y8P</text> + <text x="112.200005" y="102.96001" >Y88P</text> + <text x="165" y="102.96001" ></text> </svg> diff --git a/static/db/jave/fill/smpoison.flf b/static/db/jave/rest/smpoison.flf similarity index 100% rename from static/db/jave/fill/smpoison.flf rename to static/db/jave/rest/smpoison.flf diff --git a/static/db/jave/fill/smpoison.svg b/static/db/jave/rest/smpoison.svg similarity index 61% rename from static/db/jave/fill/smpoison.svg rename to static/db/jave/rest/smpoison.svg index 9eb0f4f957cd05996c8d324522b26040916ac942..c81c4cc59834a14bf441f1c7698891b5d3a3c82b 100644 --- a/static/db/jave/fill/smpoison.svg +++ b/static/db/jave/rest/smpoison.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="142.56001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="142.56001" height="73.920006"></rect> <text x="6.6000004" y="18.480001" >@@@@@@</text> <text x="1.32" y="29.04" >@@!</text> <text x="27.720001" y="29.04" >@@@</text> @@ -108,4 +125,25 @@ <text x="1.32" y="50.160004" >!</text> <text x="11.88" y="50.160004" >:</text> <text x="33" y="50.160004" >!</text> + <text x="48.84" y="18.480001" >@@@@@@@</text> + <text x="48.84" y="29.04" >@@!</text> + <text x="75.240005" y="29.04" >@@@</text> + <text x="48.84" y="39.600002" >@</text> + <line x1="55.440002" y1="31.68" x2="55.440002" y2="63.36" class="broken"></line> + <text x="59.4" y="39.600002" >@!@</text> + <line x1="76.560005" y1="31.68" x2="76.560005" y2="63.36" class="broken"></line> + <text x="80.520004" y="39.600002" >@</text> + <line x1="50.160004" y1="42.24" x2="50.160004" y2="63.36" class="broken"></line> + <text x="59.4" y="50.160004" >:</text> + <line x1="81.840004" y1="42.24" x2="81.840004" y2="63.36" class="broken"></line> + <text x="85.8" y="50.160004" >!</text> + <text x="64.68" y="60.72" >:</text> + <text x="101.64001" y="18.480001" >@@@@@@@</text> + <line x1="97.68" y1="21.12" x2="97.68" y2="52.800003" class="broken"></line> + <text x="101.64001" y="29.04" >@@</text> + <text x="101.64001" y="39.600002" >@</text> + <line x1="108.240005" y1="31.68" x2="108.240005" y2="63.36" class="broken"></line> + <line x1="102.96001" y1="42.24" x2="102.96001" y2="63.36" class="broken"></line> + <text x="117.48" y="60.72" >::</text> + <text x="133.32" y="60.72" >:</text> </svg> diff --git a/static/db/jave/fill/tengwar.flf b/static/db/jave/rest/tengwar.flf similarity index 100% rename from static/db/jave/fill/tengwar.flf rename to static/db/jave/rest/tengwar.flf diff --git a/static/db/jave/fill/tengwar.svg b/static/db/jave/rest/tengwar.svg similarity index 59% rename from static/db/jave/fill/tengwar.svg rename to static/db/jave/rest/tengwar.svg index 38efe94837cf8c5178ef137bf327aa085bedb527..e37281e9123891aaec3756ee04c3fab675b1ce2d 100644 --- a/static/db/jave/fill/tengwar.svg +++ b/static/db/jave/rest/tengwar.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="184.8" height="116.16" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="184.8" height="116.16"></rect> <text x="17.16" y="7.92" >db</text> <text x="1.32" y="18.480001" >db</text> <text x="33" y="18.480001" >db</text> @@ -103,4 +120,29 @@ <text x="17.16" y="50.160004" >88</text> <text x="17.16" y="60.72" >88</text> <text x="11.88" y="71.28001" >.8P</text> + <text x="48.84" y="39.600002" >`Yb</text> + <text x="69.96" y="39.600002" >d88b</text> + <text x="96.36" y="39.600002" >d88b</text> + <text x="54.120003" y="50.160004" >88P</text> + <text x="85.8" y="50.160004" >8Y</text> + <text x="112.200005" y="50.160004" >8b</text> + <text x="54.120003" y="60.72" >88</text> + <text x="85.8" y="60.72" >8P</text> + <text x="112.200005" y="60.72" >88</text> + <text x="54.120003" y="71.28001" >88</text> + <text x="75.240005" y="71.28001" >.dP'</text> + <text x="101.64001" y="71.28001" >.dP'</text> + <text x="54.120003" y="81.840004" >888888888888b.</text> + <text x="54.120003" y="92.4" >88</text> + <text x="48.84" y="102.96001" >.8P</text> + <text x="133.32" y="39.600002" >.dP'</text> + <text x="165" y="39.600002" >dP'</text> + <text x="133.32" y="50.160004" >88</text> + <text x="165" y="50.160004" >88</text> + <text x="133.32" y="60.72" >Y8</text> + <text x="159.72" y="60.72" >.88</text> + <text x="133.32" y="71.28001" >`Y88P'88</text> + <text x="165" y="81.840004" >88</text> + <text x="165" y="92.4" >88</text> + <text x="165" y="102.96001" >Y8.</text> </svg> diff --git a/static/db/jave/fill/tiles.flf b/static/db/jave/rest/tiles.flf similarity index 100% rename from static/db/jave/fill/tiles.flf rename to static/db/jave/rest/tiles.flf diff --git a/static/db/jave/fill/tiles.svg b/static/db/jave/rest/tiles.svg similarity index 68% rename from static/db/jave/fill/tiles.svg rename to static/db/jave/rest/tiles.svg index b7a812e6f1f20c2cd20229471eafcd0cf6d506eb..be5793c5c380d8cb13f41edeca8d92f9412868aa 100644 --- a/static/db/jave/fill/tiles.svg +++ b/static/db/jave/rest/tiles.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="168.96" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,18 +112,32 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="168.96" height="84.48"></rect> <text x="33" y="7.92" >[.</text> + <text x="80.520004" y="7.92" >[..</text> <text x="27.720001" y="18.480001" >[.</text> <text x="43.56" y="18.480001" >..</text> + <text x="80.520004" y="18.480001" >[..</text> <text x="22.44" y="29.04" >[.</text> <text x="43.56" y="29.04" >[..</text> + <text x="80.520004" y="29.04" >[..</text> <text x="17.16" y="39.600002" >[..</text> <text x="48.84" y="39.600002" >[..</text> + <text x="80.520004" y="39.600002" >[..</text> <text x="11.88" y="50.160004" >[......</text> <text x="54.120003" y="50.160004" >[..</text> + <text x="80.520004" y="50.160004" >[..</text> <text x="6.6000004" y="60.72" >[..</text> <text x="59.4" y="60.72" >[..</text> + <text x="80.520004" y="60.72" >[..</text> <text x="1.32" y="71.28001" >[..</text> - <text x="64.68" y="71.28001" >[..</text> + <text x="64.68" y="71.28001" >[..[..</text> + <text x="143.88" y="29.04" >[...</text> + <text x="101.64001" y="39.600002" >[..</text> + <text x="133.32" y="39.600002" >[..</text> + <text x="112.200005" y="50.160004" >[..[..</text> + <text x="112.200005" y="60.72" >[..</text> + <text x="133.32" y="60.72" >[..</text> + <text x="101.64001" y="71.28001" >[..</text> + <text x="143.88" y="71.28001" >[...</text> </svg> diff --git a/static/db/jave/stroke/1row.svg b/static/db/jave/stroke/1row.svg index 7f74bf5c4994e0ad1063d4356bb2ddec3c403421..68585819c264479fdc0b1903839fdbfc874aeb6f 100644 --- a/static/db/jave/stroke/1row.svg +++ b/static/db/jave/stroke/1row.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="15.84" height="21.12" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="21.12" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,9 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="15.84" height="21.12"></rect> + <rect class="backdrop" x="0" y="0" width="42.24" height="21.12"></rect> + <text x="17.16" y="7.92" >]3</text> + <path d="M 36.960003,0 A 10.56,10.56 0,0,0 36.960003,10.56" class="nofill"></path> <g> <line x1="5.28" y1="0" x2="0" y2="10.56" class="solid"></line> <line x1="5.28" y1="0" x2="10.56" y2="10.56" class="solid"></line> diff --git a/static/db/jave/stroke/B1FF.svg b/static/db/jave/stroke/B1FF.svg index dcbf904a6b9f263d0bdae61aaf3d3d32cbf490e1..beee71398ae9ae69cd2aecd2a634ed05e2b46204 100644 --- a/static/db/jave/stroke/B1FF.svg +++ b/static/db/jave/stroke/B1FF.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="21.12" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="21.12" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="21.12"></rect> + <rect class="backdrop" x="0" y="0" width="36.960003" height="21.12"></rect> + <line x1="18.480001" y1="0" x2="18.480001" y2="10.56" class="solid"></line> + <text x="22.44" y="7.92" >3</text> + <path d="M 31.68,0 A 10.56,10.56 0,0,0 31.68,10.56" class="nofill"></path> <g> <line x1="5.28" y1="0" x2="0" y2="10.56" class="solid"></line> <line x1="2.64" y1="5.28" x2="13.200001" y2="5.28" class="solid"></line> diff --git a/static/db/jave/stroke/amc3line.svg b/static/db/jave/stroke/amc3line.svg index 63d7d62314458213241d081a685ae06a5da67031..00bb60262bf5c3ce6157acacb44fd5494f76924f 100644 --- a/static/db/jave/stroke/amc3line.svg +++ b/static/db/jave/stroke/amc3line.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="42.24"></rect> <text x="1.32" y="29.04" >`</text> + <text x="54.120003" y="7.92" >.</text> + <text x="54.120003" y="29.04" >'</text> <g> <path d="M 5.28,5.28 A 2.64,2.64 0,0,0 2.64,7.92" class="nofill"></path> <line x1="2.64" y1="7.92" x2="2.64" y2="21.12" class="solid"></line> @@ -105,4 +124,25 @@ <line x1="13.200001" y1="7.92" x2="13.200001" y2="23.76" class="solid"></line> <line x1="2.64" y1="15.84" x2="13.200001" y2="15.84" class="solid"></line> </g> + <g> + <path d="M 26.400002,5.28 A 2.64,2.64 0,0,0 23.76,7.92" class="nofill"></path> + <line x1="23.76" y1="7.92" x2="23.76" y2="23.76" class="solid"></line> + <line x1="26.400002" y1="5.28" x2="31.68" y2="5.28" class="solid"></line> + <path d="M 23.76,23.76 A 2.64,2.64 0,0,0 26.400002,26.400002" class="nofill"></path> + <line x1="26.400002" y1="26.400002" x2="31.68" y2="26.400002" class="solid"></line> + </g> + <g> + <path d="M 36.960003,5.28 A 5.28,5.28 0,0,0 33,7.92" class="nofill"></path> + <line x1="33" y1="7.92" x2="31.68" y2="10.56" class="solid"></line> + <path d="M 31.68,10.56 A 10.56,10.56 0,0,0 31.68,21.12" class="nofill"></path> + <line x1="31.68" y1="21.12" x2="33" y2="23.76" class="solid"></line> + <path d="M 33,23.76 A 5.28,5.28 0,0,0 36.960003,26.400002" class="nofill"></path> + </g> + <g> + <path d="M 47.52,5.28 A 2.64,2.64 0,0,0 44.88,7.92" class="nofill"></path> + <line x1="44.88" y1="7.92" x2="44.88" y2="23.76" class="solid"></line> + <line x1="47.52" y1="5.28" x2="52.800003" y2="5.28" class="solid"></line> + <path d="M 44.88,23.76 A 2.64,2.64 0,0,0 47.52,26.400002" class="nofill"></path> + <line x1="47.52" y1="26.400002" x2="52.800003" y2="26.400002" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/stroke/amcslder.svg b/static/db/jave/stroke/amcslder.svg index e794274ee899f386e85feaf9caf4fa40c9417d07..841d91db60124ade2c27e5a59dd4a1d8943e0a6f 100644 --- a/static/db/jave/stroke/amcslder.svg +++ b/static/db/jave/stroke/amcslder.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="84.48" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="205.92001" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,41 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="84.48" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="205.92001" height="63.36"></rect> + <text x="112.200005" y="29.04" >.'</text> + <line x1="121.44" y1="31.68" x2="126.72" y2="31.68" class="solid"></line> + <text x="128.04001" y="50.160004" >.'</text> + <line x1="158.40001" y1="10.56" x2="190.08" y2="10.56" class="solid"></line> + <line x1="190.08" y1="15.84" x2="195.36" y2="15.84" class="broken"></line> + <text x="196.68001" y="18.480001" >.</text> + <text x="149.16" y="50.160004" >`.</text> + <line x1="158.40001" y1="52.800003" x2="190.08" y2="52.800003" class="solid"></line> + <text x="191.40001" y="50.160004" >.'</text> <line x1="39.600002" y1="10.56" x2="2.64" y2="47.52" class="broken"></line> <text x="33" y="29.04" >'``</text> <text x="38.280003" y="18.480001" >'.</text> <line x1="44.88" y1="15.84" x2="76.560005" y2="47.52" class="broken"></line> <text x="1.32" y="50.160004" >.</text> <text x="75.240005" y="50.160004" >.</text> + <g> + <line x1="87.12" y1="10.56" x2="110.880005" y2="10.56" class="solid"></line> + <line x1="87.12" y1="10.56" x2="87.12" y2="52.800003" class="solid"></line> + <line x1="87.12" y1="31.68" x2="110.880005" y2="31.68" class="solid"></line> + <line x1="87.12" y1="52.800003" x2="126.72" y2="52.800003" class="solid"></line> + </g> + <g> + <line x1="110.880005" y1="15.84" x2="116.16" y2="15.84" class="broken"></line> + <path d="M 116.16,15.84 A 2.64,2.64 0,0,1 118.8,18.480001" class="nofill"></path> + <line x1="118.8" y1="18.480001" x2="118.8" y2="21.12" class="solid"></line> + </g> + <g> + <line x1="126.72" y1="36.960003" x2="132" y2="36.960003" class="broken"></line> + <path d="M 132,36.960003 A 2.64,2.64 0,0,1 134.64,39.600002" class="nofill"></path> + <line x1="134.64" y1="39.600002" x2="134.64" y2="42.24" class="solid"></line> + </g> + <g> + <path d="M 150.48001,15.84 A 5.28,5.28 0,0,0 145.20001,21.12" class="nofill"></path> + <line x1="150.48001" y1="15.84" x2="158.40001" y2="15.84" class="broken"></line> + <line x1="145.20001" y1="21.12" x2="145.20001" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/stroke/ascii_new_roman.svg b/static/db/jave/stroke/ascii_new_roman.svg index c0511b6bec6a3ed1ac59f4311d75fef18b5f1d25..32b7dc2ba41897ca21d1c634c0b97cb0adc11aa8 100644 --- a/static/db/jave/stroke/ascii_new_roman.svg +++ b/static/db/jave/stroke/ascii_new_roman.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="95.04" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,12 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="95.04" height="52.800003"></rect> <text x="33" y="7.92" >,</text> + <text x="85.8" y="7.92" >,</text> <text x="33" y="29.04" >,</text> + <text x="59.4" y="29.04" >)</text> + <text x="85.8" y="29.04" >,</text> <g> <line x1="10.56" y1="10.56" x2="31.68" y2="10.56" class="solid"></line> <path d="M 10.56,10.56 A 10.56,10.56 0,0,0 10.56,21.12" class="nofill"></path> @@ -108,4 +128,19 @@ <line x1="5.28" y1="31.68" x2="10.56" y2="31.68" class="solid"></line> <path d="M 5.28,31.68 A 10.56,10.56 0,0,0 5.28,42.24" class="nofill"></path> </g> + <g> + <line x1="36.960003" y1="10.56" x2="84.48" y2="10.56" class="solid"></line> + <path d="M 36.960003,10.56 A 10.56,10.56 0,0,0 36.960003,21.12" class="nofill"></path> + <line x1="36.960003" y1="15.84" x2="44.88" y2="15.84" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="31.68" class="solid"></line> + <line x1="44.88" y1="21.12" x2="60.72" y2="21.12" class="solid"></line> + <line x1="60.72" y1="10.56" x2="60.72" y2="21.12" class="solid"></line> + <line x1="60.72" y1="15.84" x2="71.28001" y2="15.84" class="solid"></line> + <line x1="73.920006" y1="10.56" x2="68.64" y2="21.12" class="solid"></line> + <line x1="36.960003" y1="31.68" x2="58.08" y2="31.68" class="solid"></line> + <path d="M 36.960003,31.68 A 10.56,10.56 0,0,0 36.960003,42.24" class="nofill"></path> + <line x1="63.36" y1="31.68" x2="84.48" y2="31.68" class="solid"></line> + <line x1="68.64" y1="21.12" x2="73.920006" y2="31.68" class="solid"></line> + <path d="M 63.36,31.68 A 10.56,10.56 0,0,0 63.36,42.24" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/stroke/benjamin.svg b/static/db/jave/stroke/benjamin.svg index dcbf904a6b9f263d0bdae61aaf3d3d32cbf490e1..beee71398ae9ae69cd2aecd2a634ed05e2b46204 100644 --- a/static/db/jave/stroke/benjamin.svg +++ b/static/db/jave/stroke/benjamin.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="21.12" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="36.960003" height="21.12" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="21.12"></rect> + <rect class="backdrop" x="0" y="0" width="36.960003" height="21.12"></rect> + <line x1="18.480001" y1="0" x2="18.480001" y2="10.56" class="solid"></line> + <text x="22.44" y="7.92" >3</text> + <path d="M 31.68,0 A 10.56,10.56 0,0,0 31.68,10.56" class="nofill"></path> <g> <line x1="5.28" y1="0" x2="0" y2="10.56" class="solid"></line> <line x1="2.64" y1="5.28" x2="13.200001" y2="5.28" class="solid"></line> diff --git a/static/db/jave/stroke/bigfig.svg b/static/db/jave/stroke/bigfig.svg index 4149fac2001291ad9a4d6e5f1d69b726eebf2531..e66e5c209f42fdd309cf2d5fb088756f2d50ca69 100644 --- a/static/db/jave/stroke/bigfig.svg +++ b/static/db/jave/stroke/bigfig.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="21.12" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,6 +112,17 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="21.12" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="47.52" height="42.24"></rect> <rect x="2.64" y="10.56" width="10.56" height="21.119999" class="solid nofill" rx="0"></rect> + <g> + <line x1="18.480001" y1="10.56" x2="18.480001" y2="31.68" class="solid"></line> + <line x1="18.480001" y1="21.12" x2="26.400002" y2="21.12" class="solid"></line> + <line x1="18.480001" y1="31.68" x2="26.400002" y2="31.68" class="solid"></line> + <path d="M 26.400002,21.12 A 10.56,10.56 0,0,1 26.400002,31.68" class="nofill"></path> + </g> + <g> + <line x1="36.960003" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> + <path d="M 36.960003,21.12 A 10.56,10.56 0,0,0 36.960003,31.68" class="nofill"></path> + <line x1="36.960003" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/script/cola.flf b/static/db/jave/stroke/cola.flf similarity index 100% rename from static/db/jave/script/cola.flf rename to static/db/jave/stroke/cola.flf diff --git a/static/db/jave/script/cola.svg b/static/db/jave/stroke/cola.svg similarity index 70% rename from static/db/jave/script/cola.svg rename to static/db/jave/stroke/cola.svg index 734a326bc42d7cf67b53e6e4bc4569d2e21d5190..22e360df7eb5fa4687434339a49faa9d9a703fd3 100644 --- a/static/db/jave/script/cola.svg +++ b/static/db/jave/stroke/cola.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="142.56001" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,27 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="142.56001" height="73.920006"></rect> + <text x="96.36" y="7.92" >.</text> + <text x="85.8" y="18.480001" >.</text> + <line x1="97.68" y1="5.28" x2="87.12" y2="15.84" class="broken"></line> <text x="69.96" y="29.04" >.</text> + <text x="80.520004" y="29.04" >;</text> + <line x1="84.48" y1="26.400002" x2="89.76" y2="26.400002" class="solid"></line> + <text x="91.08" y="29.04" >.</text> + <text x="112.200005" y="29.04" >.</text> + <line x1="116.16" y1="26.400002" x2="121.44" y2="26.400002" class="solid"></line> + <text x="122.76" y="29.04" >.</text> <text x="38.280003" y="39.600002" >.</text> <line x1="42.24" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> - <text x="64.68" y="39.600002" >.'</text> + <text x="64.68" y="39.600002" >.';</text> + <text x="96.36" y="39.600002" >;</text> + <text x="106.920006" y="39.600002" >;</text> <text x="11.88" y="50.160004" >:'</text> + <text x="64.68" y="50.160004" >.'`::'`</text> + <line x1="100.32001" y1="47.52" x2="105.600006" y2="47.52" class="solid"></line> + <text x="106.920006" y="50.160004" >`;;;;'</text> <text x="17.16" y="60.72" >.</text> - <text x="64.68" y="60.72" >'</text> <g> <line x1="52.800003" y1="0" x2="26.400002" y2="52.800003" class="solid"></line> <line x1="52.800003" y1="0" x2="55.440002" y2="5.28" class="solid"></line> @@ -114,6 +144,8 @@ <path d="M 5.28,52.800003 A 10.56,10.56 0,0,0 5.28,63.36" class="nofill"></path> <line x1="5.28" y1="63.36" x2="15.84" y2="63.36" class="solid"></line> <path d="M 26.400002,52.800003 A 21.12,21.12 0,0,1 15.84,63.36" class="nofill"></path> + <line x1="66" y1="52.800003" x2="66" y2="55.440002" class="solid"></line> + <path d="M 66,55.440002 A 2.64,2.64 0,0,1 63.36,58.08" class="nofill"></path> </g> <g> <line x1="26.400002" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> diff --git a/static/db/jave/stroke/cygnet.svg b/static/db/jave/stroke/cygnet.svg index 4dff90f6b2ec9511dc54c373a0d70df7d460ff36..9ddb5ee11fed9438904905d7cb4efed5d8c449f4 100644 --- a/static/db/jave/stroke/cygnet.svg +++ b/static/db/jave/stroke/cygnet.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="31.68" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="58.08" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="31.68" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="58.08" height="52.800003"></rect> <text x="1.32" y="39.600002" >'</text> <text x="22.44" y="39.600002" >'</text> <g> @@ -103,4 +120,24 @@ <line x1="13.200001" y1="15.84" x2="21.12" y2="31.68" class="solid"></line> <line x1="5.28" y1="31.68" x2="21.12" y2="31.68" class="solid"></line> </g> + <g> + <line x1="29.04" y1="18.480001" x2="29.04" y2="34.32" class="solid"></line> + <line x1="29.04" y1="26.400002" x2="36.960003" y2="26.400002" class="solid"></line> + <path d="M 36.960003,26.400002 A 2.64,2.64 0,0,1 39.600002,29.04" class="nofill"></path> + <line x1="39.600002" y1="29.04" x2="39.600002" y2="34.32" class="solid"></line> + <path d="M 29.04,34.32 A 2.64,2.64 0,0,0 31.68,36.960003" class="nofill"></path> + <line x1="31.68" y1="36.960003" x2="39.600002" y2="36.960003" class="solid"></line> + <path d="M 44.88,31.68 A 5.28,5.28 0,0,1 39.600002,36.960003" class="nofill"></path> + <path d="M 39.600002,34.32 A 2.64,2.64 0,0,1 36.960003,36.960003" class="nofill"></path> + </g> + <g> + <path d="M 44.88,26.400002 A 5.28,5.28 0,0,0 39.600002,31.68" class="nofill"></path> + <line x1="44.88" y1="26.400002" x2="52.800003" y2="26.400002" class="solid"></line> + </g> + <g> + <path d="M 47.52,26.400002 A 2.64,2.64 0,0,0 44.88,29.04" class="nofill"></path> + <line x1="44.88" y1="29.04" x2="44.88" y2="34.32" class="solid"></line> + <path d="M 44.88,34.32 A 2.64,2.64 0,0,0 47.52,36.960003" class="nofill"></path> + <line x1="47.52" y1="36.960003" x2="52.800003" y2="36.960003" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/script/dietcola.flf b/static/db/jave/stroke/dietcola.flf similarity index 100% rename from static/db/jave/script/dietcola.flf rename to static/db/jave/stroke/dietcola.flf diff --git a/static/db/jave/script/dietcola.svg b/static/db/jave/stroke/dietcola.svg similarity index 60% rename from static/db/jave/script/dietcola.svg rename to static/db/jave/stroke/dietcola.svg index 734a326bc42d7cf67b53e6e4bc4569d2e21d5190..4fa6e237ab4263cef00832ada4058822a8287c6f 100644 --- a/static/db/jave/script/dietcola.svg +++ b/static/db/jave/stroke/dietcola.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="79.200005" height="73.920006" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="137.28" height="73.920006" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,21 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="79.200005" height="73.920006"></rect> + <rect class="backdrop" x="0" y="0" width="137.28" height="73.920006"></rect> + <text x="91.08" y="7.92" >.</text> <text x="69.96" y="29.04" >.</text> + <text x="117.48" y="29.04" >.</text> <text x="38.280003" y="39.600002" >.</text> <line x1="42.24" y1="42.24" x2="63.36" y2="42.24" class="solid"></line> <text x="64.68" y="39.600002" >.'</text> + <text x="96.36" y="39.600002" >)</text> <text x="11.88" y="50.160004" >:'</text> + <text x="64.68" y="50.160004" >.</text> + <text x="75.240005" y="50.160004" >`</text> + <text x="96.36" y="50.160004" >`</text> + <line x1="100.32001" y1="47.52" x2="105.600006" y2="47.52" class="solid"></line> + <text x="128.04001" y="50.160004" >'</text> <text x="17.16" y="60.72" >.</text> - <text x="64.68" y="60.72" >'</text> <g> <line x1="52.800003" y1="0" x2="26.400002" y2="52.800003" class="solid"></line> <line x1="52.800003" y1="0" x2="55.440002" y2="5.28" class="solid"></line> @@ -114,6 +138,8 @@ <path d="M 5.28,52.800003 A 10.56,10.56 0,0,0 5.28,63.36" class="nofill"></path> <line x1="5.28" y1="63.36" x2="15.84" y2="63.36" class="solid"></line> <path d="M 26.400002,52.800003 A 21.12,21.12 0,0,1 15.84,63.36" class="nofill"></path> + <line x1="66" y1="52.800003" x2="66" y2="55.440002" class="solid"></line> + <path d="M 66,55.440002 A 2.64,2.64 0,0,1 63.36,58.08" class="nofill"></path> </g> <g> <line x1="26.400002" y1="21.12" x2="31.68" y2="21.12" class="solid"></line> @@ -121,4 +147,25 @@ <line x1="26.400002" y1="31.68" x2="27.720001" y2="34.32" class="solid"></line> <path d="M 27.720001,34.32 A 5.28,5.28 0,0,0 31.68,36.960003" class="nofill"></path> </g> + <g> + <line x1="89.76" y1="10.56" x2="73.920006" y2="42.24" class="solid"></line> + <line x1="81.840004" y1="26.400002" x2="89.76" y2="26.400002" class="solid"></line> + <path d="M 89.76,26.400002 A 5.28,5.28 0,0,1 93.72,29.04" class="nofill"></path> + <line x1="93.72" y1="29.04" x2="95.04" y2="31.68" class="solid"></line> + <path d="M 73.920006,42.24 A 21.12,21.12 0,0,1 63.36,52.800003" class="nofill"></path> + </g> + <g> + <path d="M 110.880005,26.400002 A 5.28,5.28 0,0,0 106.920006,29.04" class="nofill"></path> + <line x1="106.920006" y1="29.04" x2="105.600006" y2="31.68" class="solid"></line> + <line x1="110.880005" y1="26.400002" x2="116.16" y2="26.400002" class="solid"></line> + <path d="M 105.600006,31.68 A 10.56,10.56 0,0,0 105.600006,42.24" class="nofill"></path> + <line x1="105.600006" y1="42.24" x2="106.920006" y2="44.88" class="solid"></line> + <path d="M 106.920006,44.88 A 5.28,5.28 0,0,0 110.880005,47.52" class="nofill"></path> + <line x1="110.880005" y1="47.52" x2="126.72" y2="47.52" class="solid"></line> + </g> + <g> + <line x1="79.200005" y1="47.52" x2="89.76" y2="47.52" class="solid"></line> + <line x1="95.04" y1="42.24" x2="93.72" y2="44.88" class="solid"></line> + <path d="M 93.72,44.88 A 5.28,5.28 0,0,1 89.76,47.52" class="nofill"></path> + </g> </svg> diff --git a/static/db/jave/stroke/muzzle.svg b/static/db/jave/stroke/muzzle.svg index f2e53e4e2d751dfdc2239a8902cb0ea51a6d5506..5f13dd7466cd6451c3d6b34ec88ede45cdd46573 100644 --- a/static/db/jave/stroke/muzzle.svg +++ b/static/db/jave/stroke/muzzle.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,11 +112,26 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="73.920006" height="52.800003"></rect> <text x="6.6000004" y="29.04" >><</text> + <text x="33" y="29.04" ><></text> + <text x="43.56" y="39.600002" >'</text> + <polygon points="63.36,13.200001 58.08,15.84 63.36,18.480001" class="filled"></polygon> + <text x="64.68" y="18.480001" ><</text> <g> <line x1="2.64" y1="10.56" x2="18.480001" y2="10.56" class="solid"></line> <line x1="2.64" y1="10.56" x2="2.64" y2="42.24" class="solid"></line> <line x1="18.480001" y1="10.56" x2="18.480001" y2="42.24" class="solid"></line> </g> + <g> + <line x1="29.04" y1="10.56" x2="44.88" y2="10.56" class="solid"></line> + <line x1="29.04" y1="10.56" x2="29.04" y2="42.24" class="solid"></line> + <line x1="44.88" y1="10.56" x2="44.88" y2="23.76" class="solid"></line> + <line x1="29.04" y1="42.24" x2="42.24" y2="42.24" class="solid"></line> + </g> + <g> + <line x1="55.440002" y1="10.56" x2="68.64" y2="10.56" class="solid"></line> + <line x1="55.440002" y1="10.56" x2="55.440002" y2="42.24" class="solid"></line> + <line x1="55.440002" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/script/santaclara.flf b/static/db/jave/stroke/santaclara.flf similarity index 100% rename from static/db/jave/script/santaclara.flf rename to static/db/jave/stroke/santaclara.flf diff --git a/static/db/jave/script/santaclara.svg b/static/db/jave/stroke/santaclara.svg similarity index 70% rename from static/db/jave/script/santaclara.svg rename to static/db/jave/stroke/santaclara.svg index 2d3a159ff125bbd827c1ef10286fe2d3c71a110e..0f52f0a78f757b805bd62aeadb048b9731ae60b2 100644 --- a/static/db/jave/script/santaclara.svg +++ b/static/db/jave/stroke/santaclara.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="42.24" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="73.920006" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,14 +112,22 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="42.24" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="73.920006" height="52.800003"></rect> <text x="27.720001" y="7.92" >,</text> + <text x="64.68" y="29.04" >,</text> <g> <line x1="21.12" y1="10.56" x2="29.04" y2="10.56" class="solid"></line> <line x1="21.12" y1="10.56" x2="5.28" y2="42.24" class="solid"></line> <line x1="29.04" y1="10.56" x2="29.04" y2="42.24" class="solid"></line> <line x1="13.200001" y1="26.400002" x2="29.04" y2="26.400002" class="solid"></line> <line x1="0" y1="42.24" x2="5.28" y2="42.24" class="solid"></line> - <line x1="29.04" y1="42.24" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="52.800003" y1="10.56" x2="36.960003" y2="42.24" class="solid"></line> + <line x1="29.04" y1="42.24" x2="47.52" y2="42.24" class="solid"></line> + <path d="M 47.52,31.68 A 10.56,10.56 0,0,1 47.52,42.24" class="nofill"></path> + </g> + <g> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + <path d="M 58.08,31.68 A 10.56,10.56 0,0,0 58.08,42.24" class="nofill"></path> + <line x1="58.08" y1="42.24" x2="68.64" y2="42.24" class="solid"></line> </g> </svg> diff --git a/static/db/jave/stroke/shimrod.svg b/static/db/jave/stroke/shimrod.svg index c7fc11353b9e6ca5095b731cc0e91c4cccc953b3..5857612ac16119607897e155137d6345d878ded1 100644 --- a/static/db/jave/stroke/shimrod.svg +++ b/static/db/jave/stroke/shimrod.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="63.36" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="63.36" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,10 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="63.36"></rect> + <rect class="backdrop" x="0" y="0" width="68.64" height="63.36"></rect> <text x="6.6000004" y="7.92" >,.</text> + <text x="59.4" y="29.04" >.</text> + <text x="59.4" y="50.160004" >'</text> <g> <line x1="5.28" y1="10.56" x2="2.64" y2="15.84" class="solid"></line> <line x1="2.64" y1="15.84" x2="2.64" y2="44.88" class="solid"></line> @@ -104,4 +123,20 @@ <line x1="18.480001" y1="15.84" x2="18.480001" y2="44.88" class="solid"></line> <line x1="2.64" y1="26.400002" x2="18.480001" y2="26.400002" class="solid"></line> </g> + <g> + <line x1="29.04" y1="7.92" x2="29.04" y2="44.88" class="solid"></line> + <line x1="29.04" y1="26.400002" x2="36.960003" y2="26.400002" class="solid"></line> + <path d="M 36.960003,26.400002 A 2.64,2.64 0,0,1 39.600002,29.04" class="nofill"></path> + <line x1="39.600002" y1="29.04" x2="39.600002" y2="44.88" class="solid"></line> + <path d="M 29.04,44.88 A 2.64,2.64 0,0,0 31.68,47.52" class="nofill"></path> + <line x1="31.68" y1="47.52" x2="36.960003" y2="47.52" class="solid"></line> + <path d="M 39.600002,44.88 A 2.64,2.64 0,0,1 36.960003,47.52" class="nofill"></path> + </g> + <g> + <path d="M 52.800003,26.400002 A 2.64,2.64 0,0,0 50.160004,29.04" class="nofill"></path> + <line x1="50.160004" y1="29.04" x2="50.160004" y2="44.88" class="solid"></line> + <line x1="52.800003" y1="26.400002" x2="58.08" y2="26.400002" class="solid"></line> + <path d="M 50.160004,44.88 A 2.64,2.64 0,0,0 52.800003,47.52" class="nofill"></path> + <line x1="52.800003" y1="47.52" x2="58.08" y2="47.52" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/stroke/stampate.svg b/static/db/jave/stroke/stampate.svg index 07c2f6904999873a5b821e85bf148a28c0262172..795a5a9da4362cee965d726474fcce5b7510f922 100644 --- a/static/db/jave/stroke/stampate.svg +++ b/static/db/jave/stroke/stampate.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="47.52" height="52.800003" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="89.76" height="52.800003" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,9 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="47.52" height="52.800003"></rect> + <rect class="backdrop" x="0" y="0" width="89.76" height="52.800003"></rect> <text x="22.44" y="7.92" >,</text> <text x="1.32" y="39.600002" >,'</text> + <text x="80.520004" y="18.480001" >.</text> + <text x="80.520004" y="39.600002" >'</text> <g> <line x1="29.04" y1="7.92" x2="29.04" y2="34.32" class="solid"></line> <path d="M 29.04,34.32 A 2.64,2.64 0,0,0 31.68,36.960003" class="nofill"></path> @@ -108,4 +127,20 @@ <line x1="39.600002" y1="29.04" x2="39.600002" y2="34.32" class="solid"></line> <path d="M 39.600002,34.32 A 2.64,2.64 0,0,1 36.960003,36.960003" class="nofill"></path> </g> + <g> + <line x1="50.160004" y1="7.92" x2="50.160004" y2="34.32" class="solid"></line> + <line x1="50.160004" y1="15.84" x2="58.08" y2="15.84" class="solid"></line> + <path d="M 58.08,15.84 A 2.64,2.64 0,0,1 60.72,18.480001" class="nofill"></path> + <line x1="60.72" y1="18.480001" x2="60.72" y2="34.32" class="solid"></line> + <path d="M 50.160004,34.32 A 2.64,2.64 0,0,0 52.800003,36.960003" class="nofill"></path> + <line x1="52.800003" y1="36.960003" x2="58.08" y2="36.960003" class="solid"></line> + <path d="M 60.72,34.32 A 2.64,2.64 0,0,1 58.08,36.960003" class="nofill"></path> + </g> + <g> + <path d="M 73.920006,15.84 A 2.64,2.64 0,0,0 71.28001,18.480001" class="nofill"></path> + <line x1="71.28001" y1="18.480001" x2="71.28001" y2="34.32" class="solid"></line> + <line x1="73.920006" y1="15.84" x2="79.200005" y2="15.84" class="solid"></line> + <path d="M 71.28001,34.32 A 2.64,2.64 0,0,0 73.920006,36.960003" class="nofill"></path> + <line x1="73.920006" y1="36.960003" x2="79.200005" y2="36.960003" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/stroke/swan.svg b/static/db/jave/stroke/swan.svg index 26717450c2216ffee544a1d1419add1ee97d8d9b..d1f11826fb47301e6c58b5d550301dbdc48856d8 100644 --- a/static/db/jave/stroke/swan.svg +++ b/static/db/jave/stroke/swan.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="52.800003" height="84.48" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="100.32001" height="84.48" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,12 +112,35 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="52.800003" height="84.48"></rect> + <rect class="backdrop" x="0" y="0" width="100.32001" height="84.48"></rect> + <line x1="50.160004" y1="29.04" x2="50.160004" y2="66" class="solid"></line> + <text x="91.08" y="50.160004" >.</text> <text x="1.32" y="71.28001" >'</text> <text x="43.56" y="71.28001" >`</text> + <text x="54.120003" y="71.28001" >`</text> + <text x="91.08" y="71.28001" >'</text> <g> <line x1="23.76" y1="26.400002" x2="5.28" y2="63.36" class="solid"></line> <line x1="23.76" y1="26.400002" x2="42.24" y2="63.36" class="solid"></line> <line x1="10.56" y1="52.800003" x2="36.960003" y2="52.800003" class="solid"></line> </g> + <g> + <path d="M 55.440002,47.52 A 5.28,5.28 0,0,0 50.160004,52.800003" class="nofill"></path> + <line x1="55.440002" y1="47.52" x2="63.36" y2="47.52" class="solid"></line> + <path d="M 63.36,47.52 A 5.28,5.28 0,0,1 67.32,50.160004" class="nofill"></path> + <line x1="67.32" y1="50.160004" x2="68.64" y2="52.800003" class="solid"></line> + <path d="M 68.64,52.800003 A 10.56,10.56 0,0,1 68.64,63.36" class="nofill"></path> + <line x1="68.64" y1="63.36" x2="67.32" y2="66" class="solid"></line> + <line x1="58.08" y1="68.64" x2="63.36" y2="68.64" class="solid"></line> + <path d="M 67.32,66 A 5.28,5.28 0,0,1 63.36,68.64" class="nofill"></path> + </g> + <g> + <path d="M 84.48,47.52 A 5.28,5.28 0,0,0 80.520004,50.160004" class="nofill"></path> + <line x1="80.520004" y1="50.160004" x2="79.200005" y2="52.800003" class="solid"></line> + <line x1="84.48" y1="47.52" x2="89.76" y2="47.52" class="solid"></line> + <path d="M 79.200005,52.800003 A 10.56,10.56 0,0,0 79.200005,63.36" class="nofill"></path> + <line x1="79.200005" y1="63.36" x2="80.520004" y2="66" class="solid"></line> + <path d="M 80.520004,66 A 5.28,5.28 0,0,0 84.48,68.64" class="nofill"></path> + <line x1="84.48" y1="68.64" x2="89.76" y2="68.64" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/stroke/wavy.svg b/static/db/jave/stroke/wavy.svg index 2ab4e79d21d25ab1b95356d7372d2884f6e964fa..e5c1fc1d80a183b1806ae6ccee9b151de85094b7 100644 --- a/static/db/jave/stroke/wavy.svg +++ b/static/db/jave/stroke/wavy.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="42.24" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="68.64" height="42.24" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,7 +112,7 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="42.24"></rect> + <rect class="backdrop" x="0" y="0" width="68.64" height="42.24"></rect> <g> <line x1="10.56" y1="10.56" x2="15.84" y2="10.56" class="solid"></line> <line x1="10.56" y1="10.56" x2="0" y2="31.68" class="solid"></line> @@ -103,4 +120,18 @@ <path d="M 15.84,10.56 A 10.56,10.56 0,0,1 15.84,21.12" class="nofill"></path> <line x1="15.84" y1="21.12" x2="10.56" y2="31.68" class="solid"></line> </g> + <g> + <path d="M 31.68,10.56 A 10.56,10.56 0,0,0 31.68,21.12" class="nofill"></path> + <path d="M 31.68,21.12 A 10.56,10.56 0,0,1 31.68,31.68" class="nofill"></path> + </g> + <g> + <line x1="36.960003" y1="21.12" x2="42.24" y2="21.12" class="solid"></line> + <line x1="36.960003" y1="31.68" x2="42.24" y2="31.68" class="solid"></line> + <path d="M 42.24,21.12 A 10.56,10.56 0,0,1 42.24,31.68" class="nofill"></path> + </g> + <g> + <line x1="58.08" y1="21.12" x2="63.36" y2="21.12" class="solid"></line> + <path d="M 58.08,21.12 A 10.56,10.56 0,0,0 58.08,31.68" class="nofill"></path> + <line x1="58.08" y1="31.68" x2="63.36" y2="31.68" class="solid"></line> + </g> </svg> diff --git a/static/db/jave/stroke/wow.svg b/static/db/jave/stroke/wow.svg index 89455355410ab95efab081433301987aa8a9bcf4..ea08fe6e0788116892e46cbaa5f36785f7817da6 100644 --- a/static/db/jave/stroke/wow.svg +++ b/static/db/jave/stroke/wow.svg @@ -1,5 +1,22 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="26.400002" height="21.12" class="svgbob"> - <style>.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { +<svg xmlns="http://www.w3.org/2000/svg" width="63.36" height="21.12" class="svgbob"> + <style>.filled{ + fill: none !important; +} + +text{ + font-family: monospace !important; + font-weight: bold !important; + fill: red !important; + visibility: visible; +} +marker > *{ + stroke: darkorange !important; + visibility: visible; +} +body.check-text text, +body.check-text marker > *{ + visibility: hidden; +}.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { stroke: black; stroke-width: 2; stroke-opacity: 1; @@ -95,8 +112,11 @@ <circle cx="4" cy="4" r="3" class="bg_filled"></circle> </marker> </defs> - <rect class="backdrop" x="0" y="0" width="26.400002" height="21.12"></rect> + <rect class="backdrop" x="0" y="0" width="63.36" height="21.12"></rect> <line x1="5.28" y1="0" x2="0" y2="10.56" class="solid"></line> + <text x="27.720001" y="7.92" >][3</text> + <polygon points="52.800003,2.64 47.52,5.28 52.800003,7.92" class="filled"></polygon> + <text x="54.120003" y="7.92" ><</text> <g> <line x1="10.56" y1="0" x2="5.28" y2="10.56" class="solid"></line> <line x1="7.92" y1="5.28" x2="18.480001" y2="5.28" class="solid"></line> diff --git a/static/img/besancon/IMG_20240328_114135_074.jpg b/static/img/besancon/IMG_20240328_114135_074.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5485f0f4db03b6db4d2b41c8eb4792c4f5933b71 Binary files /dev/null and b/static/img/besancon/IMG_20240328_114135_074.jpg differ diff --git a/static/img/besancon/IMG_20240328_124910_531.jpg b/static/img/besancon/IMG_20240328_124910_531.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7fe6ec5917e3ae8b91a0a2988c4a025b4fb80603 Binary files /dev/null and b/static/img/besancon/IMG_20240328_124910_531.jpg differ diff --git a/static/img/besancon/IMG_20240328_125714_221.jpg b/static/img/besancon/IMG_20240328_125714_221.jpg new file mode 100644 index 0000000000000000000000000000000000000000..58c71370b7b62c093693dca8c69272ab4b95be12 Binary files /dev/null and b/static/img/besancon/IMG_20240328_125714_221.jpg differ diff --git a/static/img/besancon/IMG_20240328_163941_866.jpg b/static/img/besancon/IMG_20240328_163941_866.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f219b45dba56c8e1b3f746d71cae560d6a5680e3 Binary files /dev/null and b/static/img/besancon/IMG_20240328_163941_866.jpg differ diff --git a/static/img/besancon/IMG_20240329_124337_021.jpg b/static/img/besancon/IMG_20240329_124337_021.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5a0fc286bebcadad2bb71997c457ebb38da57c61 Binary files /dev/null and b/static/img/besancon/IMG_20240329_124337_021.jpg differ diff --git a/static/img/besancon/cobbled_2.jpg b/static/img/besancon/cobbled_2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9fcc8b043611f3bdd771d67b3d614223297cb17f Binary files /dev/null and b/static/img/besancon/cobbled_2.jpg differ diff --git a/static/img/besancon/gothik_square_recto.jpg b/static/img/besancon/gothik_square_recto.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4aa1038ad0e1691e28bcc6a0817fe11ad8e07d93 Binary files /dev/null and b/static/img/besancon/gothik_square_recto.jpg differ diff --git a/static/img/cp_screen.png b/static/img/cp_screen.png new file mode 100644 index 0000000000000000000000000000000000000000..483019ae22d54beada0ba46b153a5ccb0d7f7bd3 Binary files /dev/null and b/static/img/cp_screen.png differ diff --git a/static/img/hole/black_hole.png b/static/img/hole/black_hole.png new file mode 100644 index 0000000000000000000000000000000000000000..598bc7fd4a9638e31a2da72e47f51107cbb168c1 Binary files /dev/null and b/static/img/hole/black_hole.png differ diff --git a/static/img/hole/logo_chimere.png b/static/img/hole/logo_chimere.png new file mode 100644 index 0000000000000000000000000000000000000000..82e31b0c5dbb69ed700f22cdace8207120cc38e3 Binary files /dev/null and b/static/img/hole/logo_chimere.png differ diff --git a/static/img/hole/proto.png b/static/img/hole/proto.png new file mode 100644 index 0000000000000000000000000000000000000000..8fb7abac612a82132fc6915c082766d0d3c40243 Binary files /dev/null and b/static/img/hole/proto.png differ diff --git a/static/img/osp/1040-780-max.jpg b/static/img/osp/1040-780-max.jpg new file mode 100644 index 0000000000000000000000000000000000000000..05929acb28a01e04c483dca141f931646e621582 Binary files /dev/null and b/static/img/osp/1040-780-max.jpg differ diff --git a/static/img/osp/1137-915-max.png b/static/img/osp/1137-915-max.png new file mode 100644 index 0000000000000000000000000000000000000000..4d3814c85b5b329b3dd45909815ec93141a31134 Binary files /dev/null and b/static/img/osp/1137-915-max.png differ diff --git a/static/img/osp/2100-1401-max.png b/static/img/osp/2100-1401-max.png new file mode 100644 index 0000000000000000000000000000000000000000..acd71d000033267f6d764d1c158d7b9bdae04a00 Binary files /dev/null and b/static/img/osp/2100-1401-max.png differ diff --git a/static/img/osp/IMG_20240608_190106_165.jpg b/static/img/osp/IMG_20240608_190106_165.jpg new file mode 100644 index 0000000000000000000000000000000000000000..5aa197ba5791ed2c473275fe60439ff5826f00a0 Binary files /dev/null and b/static/img/osp/IMG_20240608_190106_165.jpg differ diff --git a/static/img/osp/IMG_20240608_195836_007.jpg b/static/img/osp/IMG_20240608_195836_007.jpg new file mode 100644 index 0000000000000000000000000000000000000000..01ac4938380251690aa5a612bd0ed708357f7c13 Binary files /dev/null and b/static/img/osp/IMG_20240608_195836_007.jpg differ diff --git a/static/img/osp/IMG_20240608_202836_644.jpg b/static/img/osp/IMG_20240608_202836_644.jpg new file mode 100644 index 0000000000000000000000000000000000000000..e561232bc1aec0a331ab2dbb4010b67741e15d87 Binary files /dev/null and b/static/img/osp/IMG_20240608_202836_644.jpg differ diff --git a/static/img/osp/stars-vs-creatures.png b/static/img/osp/stars-vs-creatures.png new file mode 100644 index 0000000000000000000000000000000000000000..2f816823ddef0443249b73a0e9d5e3b904f53c90 Binary files /dev/null and b/static/img/osp/stars-vs-creatures.png differ diff --git a/static/img/self/IMG_20240612_183234_592.jpg b/static/img/self/IMG_20240612_183234_592.jpg new file mode 100644 index 0000000000000000000000000000000000000000..780b5aea96dce9b48f255c9c835c98e0ac0b4691 Binary files /dev/null and b/static/img/self/IMG_20240612_183234_592.jpg differ diff --git a/static/img/self/IMG_20240612_203609_322.jpg b/static/img/self/IMG_20240612_203609_322.jpg new file mode 100644 index 0000000000000000000000000000000000000000..389e3b6ebe322913d374fd34bd23702bcaf4cc16 Binary files /dev/null and b/static/img/self/IMG_20240612_203609_322.jpg differ diff --git a/static/img/self/main.svg b/static/img/self/main.svg new file mode 100644 index 0000000000000000000000000000000000000000..c2e0fc01df5e841ea3c7bb20ea84493835de98e1 --- /dev/null +++ b/static/img/self/main.svg @@ -0,0 +1,763 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg width="720" height="720" class="svgbob" version="1.1" id="svg466" sodipodi:docname="cobbled-paths-2.svg" inkscape:version="1.3.1 (9b9bdc1480, 2023-11-25, custom)" 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"> + <sodipodi:namedview id="namedview466" pagecolor="#ffffff" bordercolor="#666666" borderopacity="1.0" inkscape:showpageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" inkscape:deskcolor="#d1d1d1" inkscape:zoom="0.9" inkscape:cx="161.11111" inkscape:cy="333.33333" inkscape:window-width="1854" inkscape:window-height="968" inkscape:window-x="0" inkscape:window-y="34" inkscape:window-maximized="1" inkscape:current-layer="svg466"/> + <style id="style1">.svgbob line, .svgbob path, .svgbob circle, .svgbob rect, .svgbob polygon { + stroke: black; + stroke-width: 3; + stroke-opacity: 1; + fill-opacity: 1; + stroke-linecap: round; + stroke-linejoin: miter; +} + +.svgbob text { + white-space: pre; + fill: black; + font-family: Iosevka Fixed, monospace; + font-size: 14px; +} + +.svgbob rect.backdrop { + stroke: none; + fill: white; +} + +.svgbob .broken { + stroke-dasharray: 8; +} + +.svgbob .filled { + fill: black; +} + +.svgbob .bg_filled { + fill: white; + stroke-width: 1; +} + +.svgbob .nofill { + fill: white; +} + +.svgbob .end_marked_arrow { + marker-end: url(#arrow); +} + +.svgbob .start_marked_arrow { + marker-start: url(#arrow); +} + +.svgbob .end_marked_diamond { + marker-end: url(#diamond); +} + +.svgbob .start_marked_diamond { + marker-start: url(#diamond); +} + +.svgbob .end_marked_circle { + marker-end: url(#circle); +} + +.svgbob .start_marked_circle { + marker-start: url(#circle); +} + +.svgbob .end_marked_open_circle { + marker-end: url(#open_circle); +} + +.svgbob .start_marked_open_circle { + marker-start: url(#open_circle); +} + +.svgbob .end_marked_big_open_circle { + marker-end: url(#big_open_circle); +} + +.svgbob .start_marked_big_open_circle { + marker-start: url(#big_open_circle); +} + +</style> + <defs id="defs4"> + <marker id="arrow" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="4,2 0,0 0,4 " id="polygon1"/> + </marker> + <marker id="diamond" viewBox="-2 -2 8 8" refX="4" refY="2" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <polygon points="4,2 2,4 0,2 2,0 " id="polygon2"/> + </marker> + <marker id="circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="filled" id="circle2"/> + </marker> + <marker id="open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="2" class="bg_filled" id="circle3"/> + </marker> + <marker id="big_open_circle" viewBox="0 0 8 8" refX="4" refY="4" markerWidth="7" markerHeight="7" orient="auto-start-reverse"> + <circle cx="4" cy="4" r="3" class="bg_filled" id="circle4"/> + </marker> + </defs> + <rect style="fill:#6f4500;fill-opacity:0.74477684;stroke:none;stroke-width:0.619843;stroke-linejoin:round;stroke-opacity:1" id="rect466" width="720" height="720" x="0" y="0"/> + <line x1="204.72946" y1="136.11136" x2="211.75317" y2="136.11136" class="solid" id="line4" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324.13275" y1="129.08783" x2="317.10904" y2="143.13489" class="solid" id="line5" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324.13275" y1="134.35548" x2="338.18021" y2="134.35548" class="solid" id="line6" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324.13275" y1="137.86725" x2="338.18021" y2="137.86725" class="solid" id="line7" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="338.18021" y1="136.11136" x2="352.22766" y2="136.11136" class="solid" id="line8" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="352.22766" y1="134.35548" x2="359.25134" y2="134.35548" class="solid" id="line9" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="352.22766" y1="137.86725" x2="359.25134" y2="137.86725" class="solid" id="line10" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="136.11136" x2="373.29883" y2="136.11136" class="solid" id="line11" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="373.29883" y1="134.35548" x2="380.32254" y2="134.35548" class="solid" id="line12" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="373.29883" y1="137.86725" x2="380.32254" y2="137.86725" class="solid" id="line13" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380.32254" y1="136.11136" x2="394.37" y2="136.11136" class="solid" id="line14" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="394.37" y1="134.35548" x2="401.39371" y2="134.35548" class="solid" id="line15" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="394.37" y1="137.86725" x2="401.39371" y2="137.86725" class="solid" id="line16" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="401.39371" y1="136.11136" x2="415.44116" y2="136.11136" class="solid" id="line17" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="415.44116" y1="134.35548" x2="422.4649" y2="134.35548" class="solid" id="line18" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="415.44116" y1="137.86725" x2="422.4649" y2="137.86725" class="solid" id="line19" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="422.4649" y1="136.11136" x2="429.48862" y2="136.11136" class="solid" id="line20" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="443.53604" y1="129.08783" x2="429.48862" y2="157.18196" class="solid" id="line21" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324.13275" y1="148.40256" x2="331.15646" y2="148.40256" class="solid" id="line22" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324.13275" y1="151.91431" x2="331.15646" y2="151.91431" class="solid" id="line23" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="331.15646" y1="150.15843" x2="345.20392" y2="150.15843" class="solid" id="line24" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="345.20392" y1="148.40256" x2="359.25134" y2="148.40256" class="solid" id="line25" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="345.20392" y1="151.91431" x2="359.25134" y2="151.91431" class="solid" id="line26" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="150.15843" x2="373.29883" y2="150.15843" class="solid" id="line27" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="373.29883" y1="148.40256" x2="380.32254" y2="148.40256" class="solid" id="line28" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="373.29883" y1="151.91431" x2="380.32254" y2="151.91431" class="solid" id="line29" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380.32254" y1="150.15843" x2="394.37" y2="150.15843" class="solid" id="line30" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="394.37" y1="148.40256" x2="401.39371" y2="148.40256" class="solid" id="line31" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="394.37" y1="151.91431" x2="401.39371" y2="151.91431" class="solid" id="line32" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="401.39371" y1="150.15843" x2="415.44116" y2="150.15843" class="solid" id="line33" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="415.44116" y1="148.40256" x2="422.4649" y2="148.40256" class="solid" id="line34" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="415.44116" y1="151.91431" x2="422.4649" y2="151.91431" class="solid" id="line35" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="548.89185" y1="150.15843" x2="555.91559" y2="150.15843" class="solid" id="line36" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="331.15646" y1="162.4496" x2="338.18021" y2="162.4496" class="solid" id="line37" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="331.15646" y1="165.96136" x2="338.18021" y2="165.96136" class="solid" id="line38" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="338.18021" y1="164.20549" x2="352.22766" y2="164.20549" class="solid" id="line39" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="352.22766" y1="162.4496" x2="359.25134" y2="162.4496" class="solid" id="line40" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="352.22766" y1="165.96136" x2="359.25134" y2="165.96136" class="solid" id="line41" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="164.20549" x2="366.27505" y2="164.20549" class="solid" id="line42" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380.32254" y1="162.4496" x2="387.34628" y2="162.4496" class="solid" id="line43" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380.32254" y1="165.96136" x2="387.34628" y2="165.96136" class="solid" id="line44" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="387.34628" y1="164.20549" x2="401.39371" y2="164.20549" class="solid" id="line45" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="401.39371" y1="162.4496" x2="408.41745" y2="162.4496" class="solid" id="line46" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="401.39371" y1="165.96136" x2="408.41745" y2="165.96136" class="solid" id="line47" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="408.41745" y1="164.20549" x2="422.4649" y2="164.20549" class="solid" id="line48" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="422.4649" y1="162.4496" x2="429.48862" y2="162.4496" class="solid" id="line49" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="422.4649" y1="165.96136" x2="429.48862" y2="165.96136" class="solid" id="line50" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="541.86816" y1="171.22902" x2="548.89185" y2="171.22902" class="solid" id="line51" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="352.22766" y1="178.25255" x2="359.25134" y2="178.25255" class="solid" id="line52" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="176.49666" x2="366.27505" y2="176.49666" class="solid" id="line53" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="180.00841" x2="366.27505" y2="180.00841" class="solid" id="line54" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="366.27505" y1="178.25255" x2="373.29883" y2="178.25255" class="solid" id="line55" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="373.29883" y1="176.49666" x2="380.32254" y2="176.49666" class="solid" id="line56" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="373.29883" y1="180.00841" x2="380.32254" y2="180.00841" class="solid" id="line57" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380.32254" y1="178.25255" x2="387.34628" y2="178.25255" class="solid" id="line58" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="352.22766" y1="192.29961" x2="359.25134" y2="192.29961" class="solid" id="line59" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="190.54373" x2="366.27505" y2="190.54373" class="solid" id="line60" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="359.25134" y1="194.0555" x2="366.27505" y2="194.0555" class="solid" id="line61" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="366.27505" y1="192.29961" x2="373.29883" y2="192.29961" class="solid" id="line62" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="78.302452" y1="192.29961" x2="113.42104" y2="192.29961" class="solid" id="line63" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="292.526" y1="325.74664" x2="292.526" y2="367.88785" class="solid" id="line64" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="306.57346" y1="325.74664" x2="306.57346" y2="367.88785" class="solid" id="line65" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="584.01044" y1="206.34666" x2="605.08167" y2="206.34666" class="solid" id="line66" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="598.05792" y1="213.37019" x2="591.03424" y2="227.41725" class="solid" id="line67" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="225.80061" y1="255.51137" x2="236.3362" y2="255.51137" class="solid" id="line68" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="422.4649" y1="213.37019" x2="415.44116" y2="227.41725" class="solid" id="line69" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="492.70212" y1="241.46431" x2="513.77325" y2="241.46431" class="solid" id="line70" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="450.55975" y1="508.35846" x2="471.63092" y2="508.35846" class="solid" id="line71" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="218.77689" y1="578.59375" x2="211.75317" y2="592.64081" class="solid" id="line72" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="331.15646" y1="606.68787" x2="373.29883" y2="606.68787" class="solid" id="line73" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324.13275" y1="620.73492" x2="331.15646" y2="620.73492" class="solid" id="line74" style="stroke:#ffffff;stroke-opacity:1"/> + <g id="g93" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="184" y1="32" x2="192" y2="32" class="solid" id="line77" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="32" x2="128" y2="144" class="solid" id="line78" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="192" y1="32" x2="200" y2="48" class="solid" id="line79" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="200" y1="48" x2="208" y2="48" class="solid" id="line80" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="168" y1="64" x2="176" y2="80" class="solid" id="line81" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="64" x2="176" y2="80" class="solid" id="line82" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="64" x2="200" y2="96" class="solid" id="line83" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="152" y1="96" x2="162" y2="116" class="solid" id="line84" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 162,116 A 8,8 0 0 0 168,120" class="nofill" id="path84" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="168" y1="120" x2="176" y2="120" class="solid" id="line85" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="176" y1="120" x2="184" y2="128" class="solid" id="line86" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="128" x2="200" y2="128" class="solid" id="line87" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="252" y1="24" x2="224" y2="80" class="solid" id="line88" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="252" y1="24" x2="264" y2="48" class="solid" id="line89" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="264" y1="48" x2="272" y2="48" class="solid" id="line90" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="208" y1="48" x2="232" y2="96" class="solid" id="line91" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="272" y1="48" x2="280" y2="64" class="solid" id="line92" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="216" y1="64" x2="200" y2="96" class="solid" id="line93" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g97" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="504" y1="32" x2="488" y2="64" class="solid" id="line94" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="504" y1="32" x2="512" y2="48" class="solid" id="line95" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="480" y1="64" x2="488" y2="64" class="solid" id="line96" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="480" y1="64" x2="472" y2="80" class="solid" id="line97" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g102" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="520" y1="48" x2="536" y2="48" class="solid" id="line98" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="520" y1="48" x2="504" y2="80" class="solid" id="line99" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="536" y1="48" x2="546" y2="68" class="solid" id="line100" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 546,68 A 8,8 0 0 0 552,72" class="nofill" id="path100" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="552" y1="72" x2="568" y2="72" class="solid" id="line101" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 568,72 A 8,8 0 0 1 574,76" class="nofill" id="path101" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="574" y1="76" x2="592" y2="112" class="solid" id="line102" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g111" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="264" y1="80" x2="280" y2="80" class="solid" id="line103" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="280" y1="80" x2="288" y2="96" class="solid" id="line104" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="284" y1="88" x2="296" y2="88" class="solid" id="line105" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="288" y1="64" x2="298" y2="84" class="solid" id="line106" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="296" y1="80" x2="304" y2="80" class="solid" id="line107" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 298,84 A 3,3 0 0 1 296,88" class="nofill" id="path107" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="304" y1="80" x2="312" y2="96" class="solid" id="line108" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="248" y1="96" x2="256" y2="96" class="solid" id="line109" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="264" y1="80" x2="232" y2="144" class="solid" id="line110" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="240" y1="96" x2="248" y2="112" class="solid" id="line111" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g113" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="456" y1="80" x2="468" y2="80" class="solid" id="line112" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="456" y1="80" x2="448" y2="96" class="solid" id="line113" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g119" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="488" y1="96" x2="496" y2="96" class="solid" id="line114" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="496" y1="96" x2="504" y2="112" class="solid" id="line115" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="472" y1="112" x2="480" y2="112" class="solid" id="line116" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="488" y1="96" x2="480" y2="112" class="solid" id="line117" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="480" y1="112" x2="488" y2="120" class="solid" id="line118" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="488" y1="120" x2="508" y2="120" class="solid" id="line119" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 508,120 A 8,8 0 0 1 516,128" class="nofill" id="path119" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g121" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="520" y1="80" x2="528" y2="96" class="solid" id="line120" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="528" y1="96" x2="536" y2="96" class="solid" id="line121" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g123" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="296" y1="96" x2="312" y2="128" class="solid" id="line122" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="288" y1="120" x2="308" y2="120" class="solid" id="line123" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g125" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="512" y1="104" x2="520" y2="104" class="solid" id="line124" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 520,104 A 3,3 0 0 1 522,108" class="nofill" id="path124" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="522" y1="108" x2="512" y2="128" class="solid" id="line125" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g128" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="544" y1="112" x2="552" y2="112" class="solid" id="line126" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="560" y1="96" x2="550" y2="116" class="solid" id="line127" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="536" y1="120" x2="544" y2="120" class="solid" id="line128" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 550,116 A 8,8 0 0 1 544,120" class="nofill" id="path128" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g130" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 264,120 A 8,8 0 0 0 258,124" class="nofill" id="path129" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="258" y1="124" x2="248" y2="144" class="solid" id="line129" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="264" y1="120" x2="272" y2="120" class="solid" id="line130" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g133" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="464" y1="128" x2="472" y2="128" class="solid" id="line131" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="448" y1="136" x2="456" y2="136" class="solid" id="line132" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="464" y1="128" x2="456" y2="136" class="solid" id="line133" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g136" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 508,128 A 8,8 0 0 0 516,136" class="nofill" id="path133" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="516" y1="136" x2="528" y2="136" class="solid" id="line134" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="528" y1="136" x2="536" y2="144" class="solid" id="line135" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="536" y1="144" x2="544" y2="144" class="solid" id="line136" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g138" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 344,40 A 8,8 0 0 0 338,44" class="nofill" id="path136" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="338" y1="44" x2="336" y2="48" class="solid" id="line137" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 336,48 A 16,16 0 0 0 336,64" class="nofill" id="path137" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="336" y1="64" x2="338" y2="68" class="solid" id="line138" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 338,68 A 8,8 0 0 0 344,72" class="nofill" id="path138" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g146" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="48" y1="144" x2="40" y2="160" class="solid" id="line139" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="48" y1="144" x2="72" y2="192" class="solid" id="line140" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="52" y1="152" x2="68" y2="152" class="solid" id="line141" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="72" y1="144" x2="48" y2="192" class="solid" id="line142" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="72" y1="144" x2="80" y2="160" class="solid" id="line143" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 40,160 A 16,16 0 0 0 40,176" class="nofill" id="path143" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 80,160 A 16,16 0 0 1 80,176" class="nofill" id="path144" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="40" y1="176" x2="48" y2="192" class="solid" id="line144" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="52" y1="184" x2="68" y2="184" class="solid" id="line145" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="80" y1="176" x2="72" y2="192" class="solid" id="line146" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g152" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="60" y1="192" x2="60" y2="280" class="solid" id="line147" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="80" y1="208" x2="60" y2="248" class="solid" id="line148" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="80" y1="208" x2="88" y2="224" class="solid" id="line149" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 88,224 A 16,16 0 0 1 88,240" class="nofill" id="path149" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="88" y1="240" x2="86" y2="244" class="solid" id="line150" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 86,244 A 8,8 0 0 1 80,248" class="nofill" id="path150" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="40" y1="224" x2="32" y2="240" class="solid" id="line151" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="40" y1="224" x2="60" y2="264" class="solid" id="line152" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 32,240 A 16,16 0 0 0 32,256" class="nofill" id="path152" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g154" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="0" y1="288" x2="24" y2="288" class="solid" id="line153" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="16" y1="272" x2="24" y2="288" class="solid" id="line154" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g156" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="24" y1="272" x2="32" y2="288" class="solid" id="line155" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="32" y1="288" x2="56" y2="288" class="solid" id="line156" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g219" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="64" y1="288" x2="712" y2="288" class="solid" id="line157" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="96" y1="272" x2="88" y2="288" class="solid" id="line158" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="132" y1="288" x2="132" y2="312" class="solid" id="line159" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="148" y1="288" x2="148" y2="312" class="solid" id="line160" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="164" y1="288" x2="164" y2="312" class="solid" id="line161" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="180" y1="288" x2="180" y2="312" class="solid" id="line162" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="196" y1="288" x2="196" y2="312" class="solid" id="line163" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="212" y1="288" x2="212" y2="320" class="solid" id="line164" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="228" y1="288" x2="228" y2="312" class="solid" id="line165" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="244" y1="288" x2="244" y2="312" class="solid" id="line166" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="260" y1="288" x2="260" y2="312" class="solid" id="line167" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="276" y1="288" x2="276" y2="312" class="solid" id="line168" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="292" y1="288" x2="292" y2="304" class="solid" id="line169" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="308" y1="288" x2="308" y2="312" class="solid" id="line170" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="324" y1="288" x2="324" y2="312" class="solid" id="line171" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="340" y1="288" x2="340" y2="312" class="solid" id="line172" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="356" y1="288" x2="356" y2="312" class="solid" id="line173" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="372" y1="288" x2="372" y2="312" class="solid" id="line174" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="288" x2="388" y2="312" class="solid" id="line175" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="404" y1="288" x2="404" y2="312" class="solid" id="line176" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="420" y1="288" x2="420" y2="320" class="solid" id="line177" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="436" y1="288" x2="436" y2="312" class="solid" id="line178" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="452" y1="288" x2="452" y2="312" class="solid" id="line179" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="468" y1="288" x2="468" y2="312" class="solid" id="line180" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="484" y1="288" x2="484" y2="312" class="solid" id="line181" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="500" y1="288" x2="500" y2="304" class="solid" id="line182" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="516" y1="288" x2="516" y2="312" class="solid" id="line183" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="532" y1="288" x2="532" y2="312" class="solid" id="line184" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="548" y1="288" x2="548" y2="312" class="solid" id="line185" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="564" y1="288" x2="564" y2="312" class="solid" id="line186" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="580" y1="288" x2="580" y2="312" class="solid" id="line187" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="596" y1="288" x2="596" y2="312" class="solid" id="line188" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="132" y1="312" x2="204" y2="312" class="solid" id="line189" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="172" y1="312" x2="172" y2="344" class="solid" id="line190" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="188" y1="312" x2="188" y2="344" class="solid" id="line191" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="204" y1="312" x2="204" y2="344" class="solid" id="line192" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="220" y1="312" x2="276" y2="312" class="solid" id="line193" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="220" y1="312" x2="220" y2="344" class="solid" id="line194" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="236" y1="312" x2="236" y2="344" class="solid" id="line195" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="252" y1="312" x2="252" y2="344" class="solid" id="line196" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="268" y1="312" x2="268" y2="344" class="solid" id="line197" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="308" y1="312" x2="412" y2="312" class="solid" id="line198" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="316" y1="312" x2="316" y2="344" class="solid" id="line199" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="332" y1="312" x2="332" y2="344" class="solid" id="line200" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="348" y1="312" x2="348" y2="344" class="solid" id="line201" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="364" y1="312" x2="364" y2="336" class="solid" id="line202" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380" y1="312" x2="380" y2="344" class="solid" id="line203" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="396" y1="312" x2="396" y2="344" class="solid" id="line204" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="412" y1="312" x2="412" y2="344" class="solid" id="line205" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="428" y1="312" x2="492" y2="312" class="solid" id="line206" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="428" y1="312" x2="428" y2="344" class="solid" id="line207" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="444" y1="312" x2="444" y2="384" class="solid" id="line208" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="492" y1="312" x2="492" y2="344" class="solid" id="line209" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="516" y1="312" x2="596" y2="312" class="solid" id="line210" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="524" y1="312" x2="524" y2="344" class="solid" id="line211" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="540" y1="312" x2="540" y2="344" class="solid" id="line212" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="556" y1="312" x2="556" y2="344" class="solid" id="line213" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="572" y1="312" x2="572" y2="344" class="solid" id="line214" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="172" y1="344" x2="348" y2="344" class="solid" id="line215" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380" y1="344" x2="468" y2="344" class="solid" id="line216" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="508" y1="320" x2="508" y2="344" class="solid" id="line217" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="492" y1="344" x2="572" y2="344" class="solid" id="line218" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="500" y1="344" x2="500" y2="368" class="solid" id="line219" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g227" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="636" y1="152" x2="648" y2="152" class="solid" id="line220" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="636" y1="152" x2="624" y2="176" class="solid" id="line221" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 648,152 A 8,8 0 0 1 654,156" class="nofill" id="path221" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="654" y1="156" x2="664" y2="176" class="solid" id="line222" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="616" y1="176" x2="648" y2="176" class="solid" id="line223" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="648" y1="176" x2="656" y2="192" class="solid" id="line224" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="656" y1="192" x2="672" y2="192" class="solid" id="line225" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="680" y1="160" x2="688" y2="160" class="solid" id="line226" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="680" y1="160" x2="672" y2="176" class="solid" id="line227" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 672,176 A 16,16 0 0 1 672,192" class="nofill" id="path227" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g239" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="696" y1="160" x2="704" y2="160" class="solid" id="line228" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="696" y1="160" x2="688" y2="176" class="solid" id="line229" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="704" y1="160" x2="692" y2="184" class="solid" id="line230" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="692" y1="184" x2="692" y2="200" class="solid" id="line231" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="692" y1="200" x2="680" y2="224" class="solid" id="line232" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="672" y1="224" x2="680" y2="224" class="solid" id="line233" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="640" y1="192" x2="632" y2="208" class="solid" id="line234" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="636" y1="200" x2="656" y2="200" class="solid" id="line235" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 656,200 A 8,8 0 0 1 662,204" class="nofill" id="path235" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="662" y1="204" x2="664" y2="208" class="solid" id="line236" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 664,208 A 16,16 0 0 1 664,224" class="nofill" id="path236" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="664" y1="224" x2="656" y2="240" class="solid" id="line237" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="656" y1="240" x2="680" y2="240" class="solid" id="line238" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="672" y1="224" x2="680" y2="240" class="solid" id="line239" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g246" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="136" y1="192" x2="160" y2="192" class="solid" id="line240" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="136" y1="192" x2="124" y2="216" class="solid" id="line241" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="124" y1="216" x2="124" y2="232" class="solid" id="line242" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="124" y1="232" x2="136" y2="256" class="solid" id="line243" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="136" y1="256" x2="160" y2="256" class="solid" id="line244" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="168" y1="240" x2="160" y2="256" class="solid" id="line245" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="152" y1="208" x2="160" y2="208" class="solid" id="line246" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 160,192 A 16,16 0 0 1 160,208" class="nofill" id="path246" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g255" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="228" y1="184" x2="232" y2="184" class="solid" id="line247" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="228" y1="184" x2="220" y2="200" class="solid" id="line248" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 232,184 A 8,8 0 0 1 238,188" class="nofill" id="path248" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="238" y1="188" x2="240" y2="192" class="solid" id="line249" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="220" y1="200" x2="220" y2="232" class="solid" id="line250" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 240,192 A 16,16 0 0 1 240,208" class="nofill" id="path250" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="240" y1="208" x2="224" y2="240" class="solid" id="line251" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="220" y1="232" x2="232" y2="256" class="solid" id="line252" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="232" y1="256" x2="240" y2="256" class="solid" id="line253" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="248" y1="240" x2="260" y2="240" class="solid" id="line254" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="248" y1="240" x2="240" y2="256" class="solid" id="line255" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g264" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="268" y1="184" x2="272" y2="184" class="solid" id="line256" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="268" y1="184" x2="260" y2="200" class="solid" id="line257" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 272,184 A 8,8 0 0 1 278,188" class="nofill" id="path257" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="278" y1="188" x2="280" y2="192" class="solid" id="line258" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="260" y1="200" x2="260" y2="232" class="solid" id="line259" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 280,192 A 16,16 0 0 1 280,208" class="nofill" id="path259" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="280" y1="208" x2="264" y2="240" class="solid" id="line260" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="260" y1="232" x2="272" y2="256" class="solid" id="line261" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="272" y1="256" x2="280" y2="256" class="solid" id="line262" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="288" y1="240" x2="300" y2="240" class="solid" id="line263" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="288" y1="240" x2="280" y2="256" class="solid" id="line264" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g283" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="308" y1="184" x2="312" y2="184" class="solid" id="line265" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="308" y1="184" x2="300" y2="200" class="solid" id="line266" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 312,184 A 8,8 0 0 1 318,188" class="nofill" id="path266" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="318" y1="188" x2="320" y2="192" class="solid" id="line267" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="300" y1="200" x2="300" y2="232" class="solid" id="line268" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 320,192 A 16,16 0 0 1 320,208" class="nofill" id="path268" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="320" y1="208" x2="304" y2="240" class="solid" id="line269" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="300" y1="232" x2="312" y2="256" class="solid" id="line270" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="192" x2="388" y2="232" class="solid" id="line271" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="368" y1="224" x2="388" y2="224" class="solid" id="line272" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="368" y1="224" x2="352" y2="256" class="solid" id="line273" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="232" x2="376" y2="256" class="solid" id="line274" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="360" y1="240" x2="368" y2="256" class="solid" id="line275" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="368" y1="256" x2="376" y2="256" class="solid" id="line276" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="332" y1="224" x2="344" y2="224" class="solid" id="line277" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="332" y1="224" x2="332" y2="232" class="solid" id="line278" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="332" y1="232" x2="320" y2="256" class="solid" id="line279" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="312" y1="256" x2="320" y2="256" class="solid" id="line280" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="328" y1="240" x2="336" y2="256" class="solid" id="line281" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="336" y1="256" x2="352" y2="256" class="solid" id="line282" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="332" y1="240" x2="344" y2="240" class="solid" id="line283" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 344,224 A 16,16 0 0 1 344,240" class="nofill" id="path283" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g290" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="184" y1="224" x2="200" y2="224" class="solid" id="line284" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="224" x2="176" y2="240" class="solid" id="line285" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="224" x2="192" y2="240" class="solid" id="line286" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="192" y1="240" x2="200" y2="240" class="solid" id="line287" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 200,224 A 16,16 0 0 1 200,240" class="nofill" id="path287" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="176" y1="240" x2="184" y2="256" class="solid" id="line288" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="184" y1="256" x2="192" y2="256" class="solid" id="line289" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="200" y1="240" x2="192" y2="256" class="solid" id="line290" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g293" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="388" y1="240" x2="388" y2="256" class="solid" id="line291" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="256" x2="400" y2="256" class="solid" id="line292" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="408" y1="240" x2="400" y2="256" class="solid" id="line293" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g298" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="436" y1="192" x2="464" y2="192" class="solid" id="line294" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="436" y1="192" x2="436" y2="256" class="solid" id="line295" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="464" y1="192" x2="472" y2="208" class="solid" id="line296" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="436" y1="224" x2="464" y2="224" class="solid" id="line297" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="472" y1="208" x2="464" y2="224" class="solid" id="line298" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g308" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="556" y1="184" x2="560" y2="184" class="solid" id="line299" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="556" y1="184" x2="548" y2="200" class="solid" id="line300" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 560,184 A 8,8 0 0 1 566,188" class="nofill" id="path300" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="566" y1="188" x2="568" y2="192" class="solid" id="line301" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="548" y1="200" x2="548" y2="232" class="solid" id="line302" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 568,192 A 16,16 0 0 1 568,208" class="nofill" id="path302" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="568" y1="208" x2="548" y2="248" class="solid" id="line303" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="548" y1="232" x2="536" y2="256" class="solid" id="line304" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="560" y1="224" x2="568" y2="240" class="solid" id="line305" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="548" y1="240" x2="548" y2="248" class="solid" id="line306" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 568,240 A 16,16 0 0 1 568,256" class="nofill" id="path306" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="524" y1="240" x2="524" y2="256" class="solid" id="line307" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="524" y1="256" x2="536" y2="256" class="solid" id="line308" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g312" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="524" y1="200" x2="524" y2="232" class="solid" id="line309" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="524" y1="232" x2="512" y2="256" class="solid" id="line310" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="500" y1="240" x2="500" y2="256" class="solid" id="line311" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="500" y1="256" x2="512" y2="256" class="solid" id="line312" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g318" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="480" y1="224" x2="500" y2="224" class="solid" id="line313" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="480" y1="224" x2="472" y2="240" class="solid" id="line314" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="500" y1="224" x2="500" y2="232" class="solid" id="line315" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="500" y1="232" x2="488" y2="256" class="solid" id="line316" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="472" y1="240" x2="480" y2="256" class="solid" id="line317" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="480" y1="256" x2="488" y2="256" class="solid" id="line318" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g322" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="584" y1="224" x2="600" y2="224" class="solid" id="line319" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="584" y1="224" x2="576" y2="240" class="solid" id="line320" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 600,224 A 16,16 0 0 1 600,240" class="nofill" id="path320" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="584" y1="240" x2="592" y2="256" class="solid" id="line321" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="600" y1="240" x2="592" y2="256" class="solid" id="line322" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g325" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 176,368 A 16,16 0 0 1 176,384" class="nofill" id="path322" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="176" y1="384" x2="164" y2="408" class="solid" id="line323" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="164" y1="408" x2="164" y2="420" class="solid" id="line324" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="152" y1="424" x2="160" y2="424" class="solid" id="line325" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 164,420 A 4,4 0 0 1 160,424" class="nofill" id="path325" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g327" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="164" y1="432" x2="164" y2="440" class="solid" id="line326" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="164" y1="440" x2="176" y2="464" class="solid" id="line327" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 176,464 A 16,16 0 0 1 176,480" class="nofill" id="path327" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g331" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="208" y1="384" x2="216" y2="384" class="solid" id="line328" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 208,384 A 16,16 0 0 0 208,400" class="nofill" id="path328" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="216" y1="384" x2="226" y2="404" class="solid" id="line329" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 226,404 A 8,8 0 0 0 232,408" class="nofill" id="path329" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="232" y1="408" x2="248" y2="408" class="solid" id="line330" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="264" y1="384" x2="254" y2="404" class="solid" id="line331" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 254,404 A 8,8 0 0 1 248,408" class="nofill" id="path331" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g334" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="232" y1="384" x2="244" y2="384" class="solid" id="line332" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="232" y1="384" x2="200" y2="448" class="solid" id="line333" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="244" y1="384" x2="244" y2="400" class="solid" id="line334" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g341" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="280" y1="416" x2="296" y2="416" class="solid" id="line335" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="280" y1="416" x2="264" y2="448" class="solid" id="line336" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 296,416 A 16,16 0 0 1 296,432" class="nofill" id="path336" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="244" y1="416" x2="244" y2="424" class="solid" id="line337" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="244" y1="424" x2="256" y2="448" class="solid" id="line338" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="256" y1="448" x2="264" y2="448" class="solid" id="line339" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="280" y1="432" x2="288" y2="448" class="solid" id="line340" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="296" y1="432" x2="288" y2="448" class="solid" id="line341" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g347" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="312" y1="416" x2="328" y2="416" class="solid" id="line342" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="312" y1="416" x2="304" y2="432" class="solid" id="line343" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="304" y1="432" x2="312" y2="448" class="solid" id="line344" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="348" y1="416" x2="348" y2="424" class="solid" id="line345" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="348" y1="424" x2="336" y2="448" class="solid" id="line346" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="312" y1="448" x2="336" y2="448" class="solid" id="line347" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g349" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="344" y1="408" x2="352" y2="408" class="solid" id="line348" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="356" y1="400" x2="356" y2="404" class="solid" id="line349" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 356,404 A 4,4 0 0 1 352,408" class="nofill" id="path349" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g351" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="368" y1="408" x2="376" y2="408" class="solid" id="line350" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="380" y1="400" x2="380" y2="404" class="solid" id="line351" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 380,404 A 4,4 0 0 1 376,408" class="nofill" id="path351" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g355" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="372" y1="416" x2="372" y2="424" class="solid" id="line352" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="372" y1="424" x2="360" y2="448" class="solid" id="line353" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="348" y1="432" x2="348" y2="448" class="solid" id="line354" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="348" y1="448" x2="360" y2="448" class="solid" id="line355" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g358" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="372" y1="432" x2="372" y2="448" class="solid" id="line356" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="372" y1="448" x2="384" y2="448" class="solid" id="line357" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="392" y1="432" x2="384" y2="448" class="solid" id="line358" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g361" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 408,368 A 16,16 0 0 0 408,384" class="nofill" id="path358" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="408" y1="384" x2="420" y2="408" class="solid" id="line359" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="420" y1="408" x2="420" y2="420" class="solid" id="line360" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 420,420 A 4,4 0 0 0 424,424" class="nofill" id="path360" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="424" y1="424" x2="432" y2="424" class="solid" id="line361" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g363" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="420" y1="432" x2="420" y2="440" class="solid" id="line362" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="420" y1="440" x2="408" y2="464" class="solid" id="line363" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 408,464 A 16,16 0 0 0 408,480" class="nofill" id="path363" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g369" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="260" y1="464" x2="260" y2="472" class="solid" id="line364" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="260" y1="472" x2="240" y2="512" class="solid" id="line365" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 240,512 A 16,16 0 0 0 240,528" class="nofill" id="path365" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="240" y1="528" x2="242" y2="532" class="solid" id="line366" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 242,532 A 8,8 0 0 0 248,536" class="nofill" id="path366" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="264" y1="512" x2="276" y2="536" class="solid" id="line367" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="248" y1="536" x2="276" y2="536" class="solid" id="line368" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="276" y1="536" x2="264" y2="560" class="solid" id="line369" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g372" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 320,480 A 16,16 0 0 1 320,496" class="nofill" id="path369" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="320" y1="496" x2="308" y2="520" class="solid" id="line370" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="308" y1="520" x2="308" y2="532" class="solid" id="line371" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="296" y1="536" x2="304" y2="536" class="solid" id="line372" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 308,532 A 4,4 0 0 1 304,536" class="nofill" id="path372" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g374" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="308" y1="544" x2="308" y2="552" class="solid" id="line373" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="308" y1="552" x2="320" y2="576" class="solid" id="line374" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 320,576 A 16,16 0 0 1 320,592" class="nofill" id="path374" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g382" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="344" y1="496" x2="356" y2="496" class="solid" id="line375" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 344,496 A 16,16 0 0 0 344,512" class="nofill" id="path375" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="356" y1="496" x2="356" y2="536" class="solid" id="line376" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="356" y1="536" x2="368" y2="560" class="solid" id="line377" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="496" x2="388" y2="536" class="solid" id="line378" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="512" x2="400" y2="512" class="solid" id="line379" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="408" y1="496" x2="400" y2="512" class="solid" id="line380" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="536" x2="376" y2="560" class="solid" id="line381" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="368" y1="560" x2="376" y2="560" class="solid" id="line382" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g390" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="476" y1="504" x2="476" y2="536" class="solid" id="line383" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="476" y1="536" x2="464" y2="560" class="solid" id="line384" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="440" y1="528" x2="456" y2="528" class="solid" id="line385" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="440" y1="528" x2="424" y2="560" class="solid" id="line386" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="432" y1="544" x2="440" y2="560" class="solid" id="line387" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="440" y1="560" x2="464" y2="560" class="solid" id="line388" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="400" y1="544" x2="408" y2="560" class="solid" id="line389" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="408" y1="560" x2="424" y2="560" class="solid" id="line390" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g393" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="404" y1="528" x2="416" y2="528" class="solid" id="line391" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="404" y1="528" x2="404" y2="544" class="solid" id="line392" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="404" y1="544" x2="416" y2="544" class="solid" id="line393" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 416,528 A 16,16 0 0 1 416,544" class="nofill" id="path393" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g396" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="476" y1="544" x2="476" y2="560" class="solid" id="line394" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="476" y1="560" x2="488" y2="560" class="solid" id="line395" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="496" y1="544" x2="488" y2="560" class="solid" id="line396" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g399" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 600,480 A 16,16 0 0 0 600,496" class="nofill" id="path396" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="600" y1="496" x2="612" y2="520" class="solid" id="line397" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="612" y1="520" x2="612" y2="532" class="solid" id="line398" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 612,532 A 4,4 0 0 0 616,536" class="nofill" id="path398" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="616" y1="536" x2="624" y2="536" class="solid" id="line399" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g401" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="612" y1="544" x2="612" y2="552" class="solid" id="line400" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="612" y1="552" x2="600" y2="576" class="solid" id="line401" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 600,576 A 16,16 0 0 0 600,592" class="nofill" id="path401" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g408" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="512" y1="528" x2="528" y2="528" class="solid" id="line402" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="512" y1="528" x2="504" y2="544" class="solid" id="line403" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="512" y1="528" x2="520" y2="544" class="solid" id="line404" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="520" y1="544" x2="528" y2="544" class="solid" id="line405" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 528,528 A 16,16 0 0 1 528,544" class="nofill" id="path405" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="504" y1="544" x2="512" y2="560" class="solid" id="line406" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="512" y1="560" x2="520" y2="560" class="solid" id="line407" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="528" y1="544" x2="520" y2="560" class="solid" id="line408" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g414" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="552" y1="528" x2="560" y2="528" class="solid" id="line409" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 560,528 A 16,16 0 0 1 560,544" class="nofill" id="path409" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="560" y1="544" x2="568" y2="560" class="solid" id="line410" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="568" y1="560" x2="576" y2="560" class="solid" id="line411" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="584" y1="544" x2="576" y2="560" class="solid" id="line412" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="536" y1="544" x2="544" y2="544" class="solid" id="line413" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="552" y1="528" x2="544" y2="544" class="solid" id="line414" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g419" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="536" y1="576" x2="560" y2="624" class="solid" id="line415" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 560,624 A 16,16 0 0 1 560,640" class="nofill" id="path415" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="560" y1="640" x2="558" y2="644" class="solid" id="line416" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="536" y1="624" x2="524" y2="648" class="solid" id="line417" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="524" y1="648" x2="552" y2="648" class="solid" id="line418" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="524" y1="648" x2="536" y2="672" class="solid" id="line419" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 558,644 A 8,8 0 0 1 552,648" class="nofill" id="path419" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g422" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 176,592 A 16,16 0 0 1 176,608" class="nofill" id="path420" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="176" y1="608" x2="164" y2="632" class="solid" id="line420" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="164" y1="632" x2="164" y2="644" class="solid" id="line421" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="152" y1="648" x2="160" y2="648" class="solid" id="line422" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 164,644 A 4,4 0 0 1 160,648" class="nofill" id="path422" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g424" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="164" y1="656" x2="164" y2="664" class="solid" id="line423" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="164" y1="664" x2="176" y2="688" class="solid" id="line424" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 176,688 A 16,16 0 0 1 176,704" class="nofill" id="path424" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g429" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="204" y1="608" x2="232" y2="608" class="solid" id="line425" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="204" y1="608" x2="204" y2="672" class="solid" id="line426" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="232" y1="608" x2="240" y2="624" class="solid" id="line427" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="204" y1="640" x2="232" y2="640" class="solid" id="line428" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="240" y1="624" x2="232" y2="640" class="solid" id="line429" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g437" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="260" y1="600" x2="264" y2="600" class="solid" id="line430" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="260" y1="600" x2="252" y2="616" class="solid" id="line431" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 264,600 A 8,8 0 0 1 270,604" class="nofill" id="path431" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="270" y1="604" x2="272" y2="608" class="solid" id="line432" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="252" y1="616" x2="252" y2="648" class="solid" id="line433" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 272,608 A 16,16 0 0 1 272,624" class="nofill" id="path433" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="272" y1="624" x2="256" y2="656" class="solid" id="line434" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="252" y1="648" x2="264" y2="672" class="solid" id="line435" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="264" y1="672" x2="272" y2="672" class="solid" id="line436" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="280" y1="656" x2="272" y2="672" class="solid" id="line437" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g440" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <path d="M 480,592 A 16,16 0 0 0 480,608" class="nofill" id="path437" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="480" y1="608" x2="492" y2="632" class="solid" id="line438" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="492" y1="632" x2="492" y2="644" class="solid" id="line439" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 492,644 A 4,4 0 0 0 496,648" class="nofill" id="path439" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="496" y1="648" x2="504" y2="648" class="solid" id="line440" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g442" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="492" y1="656" x2="492" y2="664" class="solid" id="line441" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="492" y1="664" x2="480" y2="688" class="solid" id="line442" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 480,688 A 16,16 0 0 0 480,704" class="nofill" id="path442" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g446" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="340" y1="616" x2="340" y2="672" class="solid" id="line443" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="364" y1="616" x2="364" y2="648" class="solid" id="line444" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="364" y1="648" x2="352" y2="672" class="solid" id="line445" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="340" y1="672" x2="352" y2="672" class="solid" id="line446" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g453" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="296" y1="640" x2="312" y2="640" class="solid" id="line447" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="296" y1="640" x2="288" y2="656" class="solid" id="line448" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="296" y1="640" x2="304" y2="656" class="solid" id="line449" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="304" y1="656" x2="312" y2="656" class="solid" id="line450" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 312,640 A 16,16 0 0 1 312,656" class="nofill" id="path450" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="288" y1="656" x2="296" y2="672" class="solid" id="line451" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="296" y1="672" x2="304" y2="672" class="solid" id="line452" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="312" y1="656" x2="304" y2="672" class="solid" id="line453" style="stroke:#ffffff;stroke-opacity:1"/> + </g> + <g id="g466" transform="matrix(0.87796536,0,0,0.87794126,43.183811,44.805476)" style="stroke-width:1.13901;stroke:#ffffff;stroke-opacity:1"> + <line x1="388" y1="640" x2="400" y2="640" class="solid" id="line454" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="640" x2="388" y2="648" class="solid" id="line455" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="648" x2="376" y2="672" class="solid" id="line456" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="384" y1="656" x2="392" y2="672" class="solid" id="line457" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="424" y1="640" x2="432" y2="640" class="solid" id="line458" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="424" y1="640" x2="408" y2="672" class="solid" id="line459" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 432,640 A 16,16 0 0 1 432,656" class="nofill" id="path459" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="392" y1="672" x2="408" y2="672" class="solid" id="line460" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="432" y1="656" x2="440" y2="672" class="solid" id="line461" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="440" y1="672" x2="448" y2="672" class="solid" id="line462" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="456" y1="656" x2="448" y2="672" class="solid" id="line463" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="388" y1="656" x2="400" y2="656" class="solid" id="line464" style="stroke:#ffffff;stroke-opacity:1"/> + <path d="M 400,640 A 16,16 0 0 1 400,656" class="nofill" id="path464" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="364" y1="656" x2="364" y2="672" class="solid" id="line465" style="stroke:#ffffff;stroke-opacity:1"/> + <line x1="364" y1="672" x2="376" y2="672" class="solid" id="line466" style="stroke:#ffffff;stroke-opacity:1"/> + </g> +</svg> \ No newline at end of file diff --git a/templates/base.html b/templates/base.html index 3a651ed49cc7f84fcb3d73a31ffaf78c95ec2afa..366b933787d7b99711472367d361c34ba67b679b 100644 --- a/templates/base.html +++ b/templates/base.html @@ -14,6 +14,7 @@ <link rel="stylesheet" type="text/css" href="/static/css/reset.css" /> <link rel="stylesheet" type="text/css" href="/static/css/basics.css" /> + <link rel="stylesheet" type="text/css" href="/static/css/svg.css" /> <!-- CSS that is applied but outside of pad (for interface, etc) --> <link rel="stylesheet" type="text/css" href="/static/css/interface.css" /> @@ -31,6 +32,7 @@ <li><a {% if request.url_rule.endpoint == "font" %}class="active"{% endif %} href="/font.html">FIGfont make</a></li> <li><a {% if request.url_rule.endpoint == "catalogue" %}class="active"{% endif %} href="/catalogue.html">FIGfont catalogue</a></li> <!-- <li><a {% if request.url_rule.endpoint == "image" %}class="active"{% endif %} href="/image.html">image</a></li> --> + <li><a {% if request.url_rule.endpoint == "gallery" %}class="active"{% endif %} href="/gallery.html">gallery</a></li> </ul> </nav> diff --git a/templates/catalogue.html b/templates/catalogue.html index 1a0654ea6d08ae9c72ee8f1d64d53107f00487ec..4039f368063831cd1850a36f38bccfc33f4621e2 100644 --- a/templates/catalogue.html +++ b/templates/catalogue.html @@ -6,11 +6,11 @@ <header class="controls"> <details class="collection-menu" id="collection-menu"> - <summary id="current-figfont">swan.flf</summary> + <summary id="current-figfont">script.flf</summary> <div> {% for type, type_data in collection.items()%} - <details> - <summary>{{type}} <span>{{type_data['ascii']}}</span></summary> + <details class="category"> + <summary>{{type}}</summary> <div class="collection" style="--index: {{loop.index}};"> {% for database in databases.keys() %} @@ -37,28 +37,27 @@ <hr> - <label>input</label> + <button id="button-svg">generate</button> + <input class="get-input" id="text-input" type="text" value="{{params['text']}}" data-name="t" data-frame="svg-iframe"/> <label for="upper-checkbox">uppercase</label> <input id="upper-checkbox" type="checkbox"/> - <button id="button-svg">generate</button> - - <label>weight</label> - <input class="get-input" type="range" min="1" max="8" value="{{params['weight']}}" data-name="w" data-frame="svg-iframe"/> - - <!-- <label class="fix-label" for="fix-checkbox" + <!-- <label for="fix-checkbox" title="custom regex to try to map unrecognized character to ones that are processed by svgbob"> autofix</label> <input id="fix-checkbox" type="checkbox" - class="body-class-check" value="check-fix" checked/> --> + class="body-class-check" value="check-fix"/> --> + + <label>weight</label> + <input class="get-input" type="range" min="1" max="8" value="{{params['weight']}}" data-name="w" data-frame="svg-iframe"/> </header> <div class="font catalogue reload" id="main"> <iframe class="f-double" id="svg-iframe" - src="/writing/{{ 'static/db/jave/stroke/swan.flf'.split('/') | join('$') }}"> + src="/writing/{{ 'static/db/default/stroke/script.flf'.split('/') | join('$') }}"> </iframe> </div> @@ -71,37 +70,27 @@ let new_url = new URL(svg_iframe.src); - function updateGET(frame, param, value){ - // object from GET parameters - let [base_src, params_src] = frame.src.split("?"); - let params = new URLSearchParams(params_src); - // update param - params.set(param, value); - // reconstituate URL - let new_src = base_src + "?" + params.toString(); - // set and refresh - frame.src = new_src; - } - // --- change current figfont for(let figfont of figfonts){ figfont.addEventListener('click', function(){ let encoded_path = figfont.dataset.path.split('/').join('$'); let figname = figfont.dataset.name; - let svg_src = svg_iframe.src; - svg_src = svg_src.split('/'); + let url = new URL(svg_iframe.src); + svg_src = url.pathname.split('/'); svg_src[svg_src.length-1] = encoded_path; svg_src = svg_src.join('/'); + url.pathname = svg_src; + console.log(url) current.innerHTML = figname; - new_url = new URL(svg_src); - document.getElementById('main').classList.add("reload"); document.getElementById('collection-menu').removeAttribute("open"); - svg_iframe.src = svg_src; + + new_url = url; + svg_iframe.src = new_url; }); } @@ -151,6 +140,18 @@ svg_iframe.addEventListener("load", function() { document.getElementById('main').classList.remove("reload"); }); + + let categories = document.getElementsByClassName('category'); + for(let category of categories){ + category.addEventListener('click', function(){ + console.log('closing') + for(let other of categories){ + if(other != category){ + other.removeAttribute('open'); + } + } + }) + } </script> {% endblock %} diff --git a/templates/drawing.html b/templates/drawing.html index 3e899304ce41d218159f2d635cd3880cd20a3310..84c5289044854a730c736f56ee64e88c9dbf91ba 100644 --- a/templates/drawing.html +++ b/templates/drawing.html @@ -5,6 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="/static/js/FileSaver.js"></script> <link rel="stylesheet" type="text/css" href="/static/css/basics.css" /> + <link rel="stylesheet" type="text/css" href="/static/css/svg.css" /> </head> <body> @@ -13,9 +14,9 @@ <div id="save-buttons"> <label for="text-checkbox" - title="display the remaining text in the svg output in red"> - output text</label> - <input id="text-checkbox" type="checkbox" class="body-class-check" value="check-text" data-name="c" data-frame="svg-iframe" checked/> + title="display the remaining text and markers in the svg output in red"> + preview</label> + <input id="text-checkbox" type="checkbox" class="body-class-check" value="check-text" data-name="c" data-frame="svg-iframe"/> <button id="save-svg">get SVG</button> <button id="save-hpgl">get HPGL</button> </div> diff --git a/templates/font.html b/templates/font.html index ba1193546dad0662fce44cc5b3e9703a1d623a95..5c3b95fda7048556f87475a76a58172b607faff2 100644 --- a/templates/font.html +++ b/templates/font.html @@ -11,14 +11,13 @@ <hr> - <label>input</label> + <button id="button-svg">generate</button> + <input class="get-input" id="text-input" type="text" value="{{params['text']}}" data-name="t" data-frame="svg-iframe"/> <label for="upper-checkbox">uppercase</label> <input id="upper-checkbox" type="checkbox"/> - <button id="button-svg">generate</button> - <label>weight</label> <input class="get-input" type="range" min="1" max="8" value="{{params['weight']}}" data-name="w" data-frame="svg-iframe"/> diff --git a/templates/gallery.html b/templates/gallery.html new file mode 100644 index 0000000000000000000000000000000000000000..2cd4e43242c6b446b203f8980615a28c3b011455 --- /dev/null +++ b/templates/gallery.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% block body %} + +<div class="gallery"> + <h3>workshop ISBA besancon, march 2024</h3> + <img src="static/img/besancon/IMG_20240328_125714_221.jpg"> + <img src="static/img/besancon/IMG_20240329_124337_021.jpg"> + <img src="static/img/besancon/IMG_20240328_124910_531.jpg"> + <img src="static/img/besancon/IMG_20240328_163941_866.jpg"> + <img src="static/img/besancon/gothik_square_recto.jpg"> + + <h3>workshop OSP plotter station, may 2024</h3> + <img src="static/img/osp/2100-1401-max.png"> + <img src="static/img/osp/1137-915-max.png"> + <img src="static/img/osp/IMG_20240608_195836_007.jpg"> + <img src="static/img/osp/IMG_20240608_202836_644.jpg"> + <img src="static/img/osp/stars-vs-creatures.png"> + + <h3>identity for black hole performance, september 2024</h3> + <img src="static/img/hole/proto.png"> + <img src="static/img/hole/black_hole.png"> + <img src="static/img/hole/logo_chimere.png"> + + <h3>other drawings</h3> + <img src="static/img/self/IMG_20240612_203609_322.jpg"> + <img src="static/img/self/main.svg"> +</div> + +{% endblock %} + diff --git a/templates/index.html b/templates/index.html index bcd3f0db2e91ea10368594669679ae9c7f9a038f..0e2b822bf268ed3e0daf97000333d0fce9d4b217 100644 --- a/templates/index.html +++ b/templates/index.html @@ -27,18 +27,28 @@ </p> </div> - <svg viewBox="0.00 0.00 1228.37 384.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + <svg class="scheme" viewBox="0.00 0.00 1228.37 384.00" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> + <style> + .scheme text{ + fill: black !important; + font-weight: normal !important; + } + .scheme a text{ + fill: inherit !important; + font-weight: inherit !important; + } + </style> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 380)"> <!-- DB1 --> <g id="node1" class="node"> <polygon fill="none" stroke="black" points="107.18,-230 104.18,-234 83.18,-234 80.18,-230 27.18,-230 27.18,-193 107.18,-193 107.18,-230"></polygon> - <text text-anchor="middle" x="67.18" y="-207.8" font-family="Liberation Mono" font-size="14.00">default</text> + <text text-anchor="middle" x="67.18" y="-207.8" font-size="14.00">default</text> </g> <!-- DB --> <g id="node4" class="node"> <polygon fill="none" stroke="black" points="394.86,-310.5 391.86,-314.5 370.86,-314.5 367.86,-310.5 272.86,-310.5 272.86,-258.5 394.86,-258.5 394.86,-310.5"></polygon> - <text text-anchor="middle" x="333.86" y="-288.3" font-family="Liberation Mono" font-size="14.00">FIGlet font </text> - <text text-anchor="middle" x="333.86" y="-273.3" font-family="Liberation Mono" font-size="14.00">Catalogue</text> + <text text-anchor="middle" x="333.86" y="-288.3" font-size="14.00">FIGlet font </text> + <text text-anchor="middle" x="333.86" y="-273.3" font-size="14.00">Catalogue</text> </g> <!-- DB1->DB --> <g id="edge1" class="edge"> @@ -48,7 +58,7 @@ <!-- DB2 --> <g id="node2" class="node"> <polygon fill="none" stroke="black" points="123.68,-376 120.68,-380 99.68,-380 96.68,-376 10.68,-376 10.68,-339 123.68,-339 123.68,-376"></polygon> - <text text-anchor="middle" x="67.18" y="-353.8" font-family="Liberation Mono" font-size="14.00">contributed</text> + <text text-anchor="middle" x="67.18" y="-353.8" font-size="14.00">contributed</text> </g> <!-- DB2->DB --> <g id="edge2" class="edge"> @@ -58,7 +68,7 @@ <!-- DB3 --> <g id="node3" class="node"> <polygon fill="none" stroke="black" points="95.18,-303 92.18,-307 71.18,-307 68.18,-303 39.18,-303 39.18,-266 95.18,-266 95.18,-303"></polygon> - <text text-anchor="middle" x="67.18" y="-280.8" font-family="Liberation Mono" font-size="14.00">JAVe</text> + <text text-anchor="middle" x="67.18" y="-280.8" font-size="14.00">JAVe</text> </g> <!-- DB3->DB --> <g id="edge3" class="edge"> @@ -68,7 +78,7 @@ <!-- FLF --> <g id="node8" class="node"> <polygon fill="none" stroke="black" points="728.37,-199.5 623.37,-199.5 623.37,-163.5 728.37,-163.5 728.37,-199.5"></polygon> - <text text-anchor="middle" x="675.87" y="-177.8" font-family="Liberation Mono" font-size="14.00">FIGlet font</text> + <text text-anchor="middle" x="675.87" y="-177.8" font-size="14.00">FIGlet font</text> </g> <!-- DB->FLF --> <g id="edge8" class="edge"> @@ -79,15 +89,15 @@ <g id="node5" class="node"> <a href="https://etherpad.org/" class="software" target="_blank"> <ellipse fill="none" stroke="black" cx="67.18" cy="-126.5" rx="67.35" ry="30.31"></ellipse> - <text text-anchor="middle" x="67.18" y="-122.8" font-family="Liberation Mono" font-size="14.00">Etherpad</text> + <text text-anchor="middle" x="67.18" y="-122.8" font-size="14.00">Etherpad</text> </a> </g> <!-- cASCII --> <g id="node6" class="node"> <ellipse fill="none" stroke="black" cx="333.86" cy="-63.5" rx="84.29" ry="41.02"></ellipse> - <text text-anchor="middle" x="333.86" y="-67.3" font-family="Liberation Mono" font-size="14.00">Free Ascii </text> - <text text-anchor="middle" x="333.86" y="-52.3" font-family="Liberation Mono" font-size="14.00">drawing</text> - <text text-anchor="middle" x="333.86" y="-02.3" font-family="Liberation Mono" font-size="14.00"> + <text text-anchor="middle" x="333.86" y="-67.3" font-size="14.00">Free Ascii </text> + <text text-anchor="middle" x="333.86" y="-52.3" font-size="14.00">drawing</text> + <text text-anchor="middle" x="333.86" y="-02.3" font-size="14.00"> <a href="https://www.asciiart.eu/">asciiart.eu</a> </text> </g> @@ -99,9 +109,9 @@ <!-- cFLF --> <g id="node7" class="node"> <ellipse fill="none" stroke="black" cx="333.86" cy="-181.5" rx="90.52" ry="41.02"></ellipse> - <text text-anchor="middle" x="333.86" y="-185.3" font-family="Liberation Mono" font-size="14.00">FIGlet font </text> - <text text-anchor="middle" x="333.86" y="-170.3" font-family="Liberation Mono" font-size="14.00">making</text> - <text text-anchor="middle" x="333.86" y="-120.3" font-family="Liberation Mono" font-size="14.00"> + <text text-anchor="middle" x="333.86" y="-185.3" font-size="14.00">FIGlet font </text> + <text text-anchor="middle" x="333.86" y="-170.3" font-size="14.00">making</text> + <text text-anchor="middle" x="333.86" y="-120.3" font-size="14.00"> <a href="http://www.jave.de/figlet/figfont.html">FIGfont Specs</a> </text> </g> @@ -113,81 +123,81 @@ <!-- ASCII --> <g id="node9" class="node"> <polygon fill="none" stroke="black" points="703.87,-89.5 647.87,-89.5 647.87,-53.5 703.87,-53.5 703.87,-89.5"></polygon> - <text text-anchor="middle" x="675.87" y="-67.8" font-family="Liberation Mono" font-size="14.00">ASCII</text> + <text text-anchor="middle" x="675.87" y="-67.8" font-size="14.00">ASCII</text> </g> <!-- cASCII->ASCII --> <g id="edge6" class="edge"> <path fill="none" stroke="black" d="M418.04,-65.46C488.11,-67.11 585.1,-69.39 637.56,-70.62"></path> <polygon fill="black" stroke="black" points="637.66,-74.13 647.74,-70.86 637.83,-67.13 637.66,-74.13"></polygon> - <text text-anchor="middle" x="523.87" y="-73.3" font-family="Liberation Mono" font-size="14.00">/export/txt</text> + <text text-anchor="middle" x="523.87" y="-73.3" font-size="14.00">/export/txt</text> </g> <!-- cFLF->FLF --> <g id="edge7" class="edge"> <path fill="none" stroke="black" d="M424.53,-181.5C478.59,-181.5 549.15,-181.5 613.16,-181.5"></path> <polygon fill="black" stroke="black" points="613.37,-185 623.37,-181.5 613.37,-178 613.37,-185"></polygon> - <text text-anchor="middle" x="523.87" y="-185.3" font-family="Liberation Mono" font-size="14.00">/export/txt</text> + <text text-anchor="middle" x="523.87" y="-185.3" font-size="14.00">/export/txt</text> </g> <!-- FLF->ASCII --> <g id="edge9" class="edge"> <a href="http://www.figlet.org/" target="_blank" class="software"> <path fill="none" stroke="black" d="M675.87,-163.31C675.87,-146.02 675.87,-119.77 675.87,-99.76"></path> <polygon fill="black" stroke="black" points="679.37,-99.66 675.87,-89.66 672.37,-99.66 679.37,-99.66"></polygon> - <text text-anchor="middle" x="665.37" y="-122.8" font-family="Liberation Mono" font-size="14.00">FIGlet </text> + <text text-anchor="middle" x="665.37" y="-122.8" font-size="14.00">FIGlet </text> </a> </g> <!-- SVG --> <g id="node10" class="node"> <polygon fill="none" stroke="black" points="965.37,-89.5 911.37,-89.5 911.37,-53.5 965.37,-53.5 965.37,-89.5"></polygon> - <text text-anchor="middle" x="938.37" y="-67.8" font-family="Liberation Mono" font-size="14.00">SVG</text> + <text text-anchor="middle" x="938.37" y="-67.8" font-size="14.00">SVG</text> </g> <!-- ASCII->SVG --> <g id="edge10" class="edge"> <a href="https://ivanceras.github.io/svgbob-editor/" target="_blank" class="software"> <path fill="none" stroke="black" d="M704.26,-71.5C751.43,-71.5 848.02,-71.5 900.86,-71.5"></path> <polygon fill="black" stroke="black" points="901.13,-75 911.13,-71.5 901.13,-68 901.13,-75"></polygon> - <text text-anchor="middle" x="819.87" y="-80.3" font-family="Liberation Mono" font-size="14.00">svgbob.rs</text> + <text text-anchor="middle" x="819.87" y="-80.3" font-size="14.00">svgbob.rs</text> </a> <a href="https://ivanceras.github.io/content/Svgbob/Specification.html"> - <text text-anchor="middle" x="819.87" y="-55.3" font-family="Liberation Mono" font-size="14.00">svgbob specs</text> + <text text-anchor="middle" x="819.87" y="-55.3" font-size="14.00">svgbob specs</text> </a> </g> <!-- HPGL --> <g id="node11" class="node"> <polygon fill="none" stroke="black" points="1194.87,-131.5 1140.87,-131.5 1140.87,-95.5 1194.87,-95.5 1194.87,-131.5"></polygon> - <text text-anchor="middle" x="1167.87" y="-109.8" font-family="Liberation Mono" font-size="14.00">HPGL</text> + <text text-anchor="middle" x="1167.87" y="-109.8" font-size="14.00">HPGL</text> </g> <!-- SVG->HPGL --> <g id="edge11" class="edge"> <a href="https://github.com/abey79/vpype" target="_blank" class="software"> <path fill="none" stroke="black" d="M965.37,-71.5C1041.56,-71.5 1058.62,-109.81 1129.5,-113.25"></path> <polygon fill="black" stroke="black" points="1129.79,-116.76 1139.87,-113.5 1129.96,-109.76 1129.79,-116.76"></polygon> - <text text-anchor="middle" x="1040.37" y="-100.3" font-family="Liberation Mono" font-size="14.00">vpype</text> + <text text-anchor="middle" x="1040.37" y="-100.3" font-size="14.00">vpype</text> </a> </g> <!-- SVG2 --> <g id="node12" class="node"> <polygon fill="none" stroke="black" points="1220.37,-59 1115.37,-59 1115.37,0 1220.37,0 1220.37,-59"></polygon> - <text text-anchor="middle" x="1167.87" y="-40.8" font-family="Liberation Mono" font-size="14.00">SVG </text> - <text text-anchor="middle" x="1167.87" y="-25.8" font-family="Liberation Mono" font-size="14.00">simplified </text> - <text text-anchor="middle" x="1167.87" y="-10.8" font-family="Liberation Mono" font-size="14.00">& joined</text> + <text text-anchor="middle" x="1167.87" y="-40.8" font-size="14.00">SVG </text> + <text text-anchor="middle" x="1167.87" y="-25.8" font-size="14.00">simplified </text> + <text text-anchor="middle" x="1167.87" y="-10.8" font-size="14.00">& joined</text> </g> <!-- SVG->SVG2 --> <g id="edge12" class="edge"> <a href="https://github.com/abey79/vpype" target="_blank" class="software"> <path fill="none" stroke="black" d="M965.37,-71.5C967.2,-71.5 1072.15,-41.32 1105.4,-32.13"></path> <polygon fill="black" stroke="black" points="1106.59,-35.43 1115.37,-29.5 1104.81,-28.66 1106.59,-35.43"></polygon> - <text text-anchor="middle" x="1040.37" y="-59.3" font-family="Liberation Mono" font-size="14.00">vpype</text> + <text text-anchor="middle" x="1040.37" y="-59.3" font-size="14.00">vpype</text> </a> </g> </g> </svg> -<div class="intro"> + <div class="intro"> <p> Like cobbled paths, none of those technologies are new, and we've been walking on them for years. Like cobbled paths, it is a reminder of the permeability between the discrete and the continuous, and how regular stones can form tortuous paths. - </p> - </div> + </p> + </div> </div> {% endblock %} diff --git a/templates/writing.html b/templates/writing.html index f9def793feb2d67ce928dfe5a9c9bd985ee0f885..ab8b4eeaa674844ef793077ab071c13e53378451 100644 --- a/templates/writing.html +++ b/templates/writing.html @@ -5,6 +5,7 @@ <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="/static/js/FileSaver.js"></script> <link rel="stylesheet" type="text/css" href="/static/css/basics.css" /> + <link rel="stylesheet" type="text/css" href="/static/css/svg.css" /> </head> <body class="double-font"> @@ -15,8 +16,8 @@ <div id="save-buttons"> <label for="text-checkbox" title="display the remaining text in the svg output in red"> - output text</label> - <input id="text-checkbox" type="checkbox" class="body-class-check" value="check-text" data-name="c" data-frame="svg-iframe" checked/> + preview</label> + <input id="text-checkbox" type="checkbox" class="body-class-check" value="check-text" data-name="c" data-frame="svg-iframe"/> <button id="save-svg">get SVG</button> <button id="save-hpgl">get HPGL</button> </div>