Workspace icon generation, add vertical and horizontal lines
|
@ -30,6 +30,28 @@ def draw_outer_rectangle(data, width, height):
|
|||
data = data.replace("{{RECTANGLE_HEIGHT}}", str(height - STROKE_WIDTH))
|
||||
return data
|
||||
|
||||
def draw_line(is_horizontal, start_x, start_y, length):
|
||||
data = ""
|
||||
direction = "H" if is_horizontal else "V"
|
||||
data += f'<path style="fill:none;stroke:{STROKE_COLOR};'
|
||||
data += f'stroke-width:{STROKE_WIDTH}" '
|
||||
data += f'd="M {start_x},{start_y} {direction} {length}" />'
|
||||
return data
|
||||
|
||||
def draw_horizontal_lines(data, n_rows, width):
|
||||
row = 1
|
||||
while row < n_rows:
|
||||
data += draw_line(True, 0, row * WORKSPACE_HEIGHT, width)
|
||||
row += 1
|
||||
return data
|
||||
|
||||
def draw_vertical_lines(data, n_cols, height):
|
||||
col = 1
|
||||
while col < n_cols:
|
||||
data += draw_line(False, col * WORKSPACE_WIDTH, 0, height)
|
||||
col += 1
|
||||
return data
|
||||
|
||||
def generate_icons(n_rows, n_cols):
|
||||
for i in range(1, n_rows * n_cols + 1):
|
||||
filename = f"{ICON_NAME_PREFIX}_{n_rows}x{n_cols}_{i}.svg"
|
||||
|
@ -38,6 +60,8 @@ def generate_icons(n_rows, n_cols):
|
|||
data = TEMPLATE
|
||||
data = define_globals(data, width, height)
|
||||
data = draw_outer_rectangle(data, width, height)
|
||||
data = draw_horizontal_lines(data, n_rows, width)
|
||||
data = draw_vertical_lines(data, n_cols, height)
|
||||
data += "</svg>"
|
||||
with open(filename, "w") as f:
|
||||
f.write(data)
|
||||
|
|
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /></svg>
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 333 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /></svg>
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 333 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 407 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 407 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 407 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 553 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 553 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 553 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 553 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 553 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /></svg>
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 333 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /></svg>
|
Before Width: | Height: | Size: 261 B After Width: | Height: | Size: 333 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>
|
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 409 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>
|
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 409 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>
|
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 409 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /></svg>
|
Before Width: | Height: | Size: 263 B After Width: | Height: | Size: 409 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 100" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 632 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 407 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 407 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 407 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 484 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 559 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 200" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 633 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 250" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 100,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 150,0 V 150" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 200,0 V 150" /></svg>
|
Before Width: | Height: | Size: 265 B After Width: | Height: | Size: 707 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 50" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 50" /></svg>
|
Before Width: | Height: | Size: 262 B After Width: | Height: | Size: 480 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |
|
@ -10,4 +10,4 @@
|
|||
x="2.5"
|
||||
y="2.5"
|
||||
ry="10" />
|
||||
</svg>
|
||||
<path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,50 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,100 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 0,150 H 100" /><path style="fill:none;stroke:#bebebe;stroke-width:5" d="M 50,0 V 200" /></svg>
|
Before Width: | Height: | Size: 264 B After Width: | Height: | Size: 558 B |