From dae4573bd2b11e9dcf5c9afe93104ef91befda2e Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 25 Aug 2022 16:19:54 -0400 Subject: add smooth_path --- lib/utils/geometry.py | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/lib/utils/geometry.py b/lib/utils/geometry.py index 789f8720..c07172c7 100644 --- a/lib/utils/geometry.py +++ b/lib/utils/geometry.py @@ -7,6 +7,8 @@ import math from shapely.geometry import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, MultiPoint, GeometryCollection from shapely.geometry import Point as ShapelyPoint +from scipy.interpolate import splprep, splev +import numpy as np def cut(line, distance, normalized=False): @@ -147,6 +149,60 @@ def cut_path(points, length): return [Point(*point) for point in subpath.coords] +def _remove_duplicate_coordinates(coords_array): + """Remove consecutive duplicate points from an array. + + Arguments: + coords_array -- numpy.array + + Returns: + a numpy.array of coordinates, minus consecutive duplicates + """ + + differences = np.diff(coords_array, axis=0) + zero_differences = np.isclose(differences, 0) + keepers = np.r_[True, np.any(zero_differences == False, axis=1)] # noqa: E712 + + return coords_array[keepers] + + +def smooth_path(path, smoothness=100.0): + """Smooth a path of coordinates. + + Arguments: + path -- an iterable of coordinate tuples or Points + smoothness -- float, how much smoothing to apply. Bigger numbers + smooth more. + + Returns: + A list of Points. + """ + + # splprep blows up on duplicated consecutive points with "Invalid inputs" + coords = _remove_duplicate_coordinates(np.array(path)) + num_points = len(coords) + + # splprep's s parameter seems to depend on the number of points you pass + # as per the docs, so let's normalize it. + s = round(smoothness / 100 * num_points) + + # .T transposes the array (for some reason splprep expects + # [[x1, x2, ...], [y1, y2, ...]] + tck, fp, ier, msg = splprep(coords.T, s=s, nest=-1, full_output=1) + if ier > 0: + from ..debug import debug + debug.log(f"error {ier} smoothing path: {msg}") + return path + + # Evaluate the spline curve at many points along its length to produce the + # smoothed point list. 2 * num_points seems to be a good number, but it + # does produce a lot of points. + smoothed_x_values, smoothed_y_values = splev(np.linspace(0, 1, num_points * 2), tck[0]) + coords = np.array([smoothed_x_values, smoothed_y_values]).T + + return [Point(x, y) for x, y in coords] + + class Point: def __init__(self, x: float, y: float): self.x = x -- cgit v1.2.3 From 0ace1ce72c72aa3293d97e5d55e9e614b66d5ee2 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 25 Aug 2022 23:08:49 -0400 Subject: add clamp_path_to_polygon --- lib/utils/clamp_path.py | 121 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 121 insertions(+) create mode 100644 lib/utils/clamp_path.py diff --git a/lib/utils/clamp_path.py b/lib/utils/clamp_path.py new file mode 100644 index 00000000..acf6f675 --- /dev/null +++ b/lib/utils/clamp_path.py @@ -0,0 +1,121 @@ +from shapely.geometry import LineString, Point as ShapelyPoint, MultiPolygon +from shapely.prepared import prep +from .geometry import Point, ensure_multi_line_string + + +def path_to_segments(path): + """Convert a path of Points into a list of segments as LineStrings""" + for start, end in zip(path[:-1], path[1:]): + yield LineString((start, end)) + + +def segments_to_path(segments): + """Convert a list of contiguous LineStrings into a list of Points.""" + coords = [segments[0].coords[0]] + + for segment in segments: + coords.extend(segment.coords[1:]) + + return [Point(x, y) for x, y in coords] + + +def fix_starting_point(border_pieces): + """Reconnect the starting point of a polygon border's pieces. + + When splitting a polygon border with two lines, we want to get two + pieces. However, that's not quite how Shapely works. The outline + of the polygon is a LinearRing that starts and ends at the same place, + but Shapely still knows where that starting point is and splits there + too. + + We don't want that third piece, so we'll reconnect the segments that + touch the starting point. + """ + + if len(border_pieces) == 3: + # Fortunately, Shapely keeps the starting point of the LinearRing + # as the starting point of the first segment. That means it's also + # the ending point of the last segment. Reconnecting is super simple: + return [border_pieces[1], + LineString(border_pieces[2].coords[:] + border_pieces[0].coords[1:])] + else: + # We probably cut exactly at the starting point. + return border_pieces + + +def adjust_line_end(line, end): + """Reverse line if necessary to ensure that it ends near end.""" + + line_start = ShapelyPoint(*line.coords[0]) + line_end = ShapelyPoint(*line.coords[-1]) + + if line_end.distance(end) < line_start.distance(end): + return line + else: + return LineString(line.coords[::-1]) + + +def find_border(polygon, point): + for border in polygon.interiors: + if border.intersects(point): + return border + else: + return polygon.exterior + + +def clamp_path_to_polygon(path, polygon): + """Constrain a path to a Polygon. + + Description: https://gis.stackexchange.com/questions/428848/clamp-linestring-to-polygon + """ + + path = LineString(path) + + # This splits the path at the points where it intersects with the polygon + # border and returns the pieces in the same order as the original path. + split_path = ensure_multi_line_string(path.difference(polygon.boundary)) + + # contains() checks can fail without this. + buffered_polygon = prep(polygon.buffer(1e-9)) + + last_segment_inside = None + was_inside = False + result = [] + + for segment in split_path.geoms: + if buffered_polygon.contains(segment): + if not was_inside: + if last_segment_inside is not None: + # The path crossed out of the polygon, and now it's crossed + # back in. We need to add a path along the border between + # the exiting and entering points. + + # First, find the two points. Buffer them just a bit to + # ensure intersection with the border. + x, y = last_segment_inside.coords[-1] + exit_point = ShapelyPoint(x, y).buffer(0.01, resolution=1) + x, y = segment.coords[0] + entry_point = ShapelyPoint(x, y).buffer(0.01, resolution=1) + + if not exit_point.intersects(entry_point): + # Now break the border into pieces using those points. + border = find_border(polygon, exit_point) + border_pieces = border.difference(MultiPolygon((entry_point, exit_point))) + border_pieces = fix_starting_point(border_pieces) + + # Pick the shortest way to get from the exiting to the + # entering point along the border. + shorter = min(border_pieces, key=lambda piece: piece.length) + + # We don't know which direction the polygon border + # piece should be. adjust_line_end() will figure + # that out. + result.append(adjust_line_end(shorter, entry_point)) + + result.append(segment) + was_inside = True + last_segment_inside = segment + else: + was_inside = False + + return segments_to_path(result) -- cgit v1.2.3 From 8cead6e3d9f9223bd4d74b30ec6964802f52d9b2 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 25 Aug 2022 23:10:16 -0400 Subject: add smoothness option for contour fill --- lib/elements/fill_stitch.py | 16 ++++++++++++++++ lib/stitches/contour_fill.py | 7 ++++++- lib/svg/tags.py | 1 + lib/utils/geometry.py | 12 ++++++++---- 4 files changed, 31 insertions(+), 5 deletions(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 77b4ac7c..fb8838cc 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -137,6 +137,20 @@ class FillStitch(EmbroideryElement): def avoid_self_crossing(self): return self.get_boolean_param('avoid_self_crossing', False) + @property + @param('smoothness_mm', _('Smoothness'), + tooltip=_( + 'Smooth the stitch path. Smoothness limits how far the smoothed stitch path ' + + 'is allowed to deviate from the original path. Hint: a lower stitchc tolerance may be needed too.' + ), + type='integer', + unit='mm', + default=0, + select_items=[('fill_method', 1)], + sort_index=5) + def smoothness(self): + return self.get_float_param('smoothness_mm', 0) + @property @param('clockwise', _('Clockwise'), type='boolean', default=True, select_items=[('fill_method', 1)], sort_index=5) def clockwise(self): @@ -651,9 +665,11 @@ class FillStitch(EmbroideryElement): if self.contour_strategy == 0: stitches = contour_fill.inner_to_outer( tree, + polygon, self.row_spacing, self.max_stitch_length, self.running_stitch_tolerance, + self.smoothness, starting_point, self.avoid_self_crossing ) diff --git a/lib/stitches/contour_fill.py b/lib/stitches/contour_fill.py index 885a7e6c..8e47518f 100644 --- a/lib/stitches/contour_fill.py +++ b/lib/stitches/contour_fill.py @@ -406,11 +406,16 @@ def _find_path_inner_to_outer(tree, node, offset, starting_point, avoid_self_cro return LineString(result_coords) -def inner_to_outer(tree, offset, stitch_length, tolerance, starting_point, avoid_self_crossing): +def inner_to_outer(tree, polygon, offset, stitch_length, tolerance, smoothness, starting_point, avoid_self_crossing): """Fill a shape with spirals, from innermost to outermost.""" stitch_path = _find_path_inner_to_outer(tree, 'root', offset, starting_point, avoid_self_crossing) points = [Stitch(*point) for point in stitch_path.coords] + + if smoothness > 0: + smoothed = smooth_path(points, smoothness) + points = clamp_path_to_polygon(smoothed, polygon) + stitches = running_stitch(points, stitch_length, tolerance) return stitches diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 64f6c2f3..8c1dd558 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -66,6 +66,7 @@ inkstitch_attribs = [ 'guided_fill_strategy', 'join_style', 'avoid_self_crossing', + 'smoothness_mm', 'clockwise', 'reverse', 'expand_mm', diff --git a/lib/utils/geometry.py b/lib/utils/geometry.py index c07172c7..2903bc56 100644 --- a/lib/utils/geometry.py +++ b/lib/utils/geometry.py @@ -182,13 +182,17 @@ def smooth_path(path, smoothness=100.0): coords = _remove_duplicate_coordinates(np.array(path)) num_points = len(coords) - # splprep's s parameter seems to depend on the number of points you pass - # as per the docs, so let's normalize it. - s = round(smoothness / 100 * num_points) + # s is explained in this issue: https://github.com/scipy/scipy/issues/11916 + # the smoothness parameter limits how much the smoothed path can deviate + # from the original path. The standard deviation of the distance between + # the smoothed path and the original path is equal to the smoothness. + # In practical terms, if smoothness is 1mm, then the smoothed path can be + # up to 1mm away from the original path. + s = num_points * smoothness ** 2 # .T transposes the array (for some reason splprep expects # [[x1, x2, ...], [y1, y2, ...]] - tck, fp, ier, msg = splprep(coords.T, s=s, nest=-1, full_output=1) + tck, fp, ier, msg = splprep(coords.T, s=s, k=3, nest=-1, full_output=1) if ier > 0: from ..debug import debug debug.log(f"error {ier} smoothing path: {msg}") -- cgit v1.2.3 From b76146aa91824817f297e9463094ec5231950e3f Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 22 Sep 2022 19:54:42 -0400 Subject: add tiles --- lib/tiles.py | 136 +++++++++++++++++++++++++++++++++++++++++++++++ tiles/diamond_square.svg | 119 +++++++++++++++++++++++++++++++++++++++++ tiles/hexagon.svg | 116 ++++++++++++++++++++++++++++++++++++++++ 3 files changed, 371 insertions(+) create mode 100644 lib/tiles.py create mode 100644 tiles/diamond_square.svg create mode 100644 tiles/hexagon.svg diff --git a/lib/tiles.py b/lib/tiles.py new file mode 100644 index 00000000..34097f67 --- /dev/null +++ b/lib/tiles.py @@ -0,0 +1,136 @@ +import inkex +from math import ceil, floor +from networkx import Graph +import os +from shapely.geometry import LineString +from shapely.prepared import prep + +from .svg import apply_transforms +from .utils import get_bundled_dir, guess_inkscape_config_path, Point +from random import random + + +class Tile: + def __init__(self, path): + self._load_tile(path) + + def _load_tile(self, tile_path): + tile_svg = inkex.load_svg(tile_path) + self.name = self._get_name(tile_path) + self._load_paths(tile_svg) + self._load_dimensions(tile_svg) + self._load_buffer_size(tile_svg) + self._load_parallelogram(tile_svg) + + def __repr__(self): + return f"Tile({self.name}, {self.shift0}, {self.shift1})" + + __str__ = __repr__ + + def _get_name(self, tile_path): + return os.path.splitext(os.path.basename(tile_path))[0] + + def _load_paths(self, tile_svg): + path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS) + self.tile = self._path_elements_to_line_strings(path_elements) + # self.center, ignore, ignore = self._get_center_and_dimensions(self.tile) + + def _load_dimensions(self, tile_svg): + svg_element = tile_svg.getroot() + self.width = svg_element.viewport_width + self.height = svg_element.viewport_height + + def _load_buffer_size(self, tile_svg): + circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS) + if circle_elements: + self.buffer_size = circle_elements[0].radius + else: + self.buffer_size = 0 + + def _load_parallelogram(self, tile_svg): + parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS) + if parallelogram_elements: + path_element = parallelogram_elements[0] + path = apply_transforms(path_element.get_path(), path_element) + subpaths = path.to_superpath() + subpath = subpaths[0] + points = [Point.from_tuple(p[1]) for p in subpath] + self.shift0 = points[1] - points[0] + self.shift1 = points[2] - points[1] + else: + self.shift0 = Point(self.width, 0) + self.shift1 = Point(0, self.height) + + def _path_elements_to_line_strings(self, path_elements): + lines = [] + for path_element in path_elements: + path = apply_transforms(path_element.get_path(), path_element) + for subpath in path.to_superpath(): + # We only care about the endpoints of each subpath. They're + # supposed to be simple line segments. + lines.append([Point.from_tuple(subpath[0][1]), Point.from_tuple(subpath[-1][1])]) + + return lines + + def _get_center_and_dimensions(self, shape): + min_x, min_y, max_x, max_y = shape.bounds + center = Point((max_x + min_x) / 2, (max_y + min_y) / 2) + width = max_x - min_x + height = max_y - min_y + + return center, width, height + + def translate_tile(self, shift): + translated_tile = [] + + for start, end in self.tile: + start += shift + end += shift + translated_tile.append((start.as_int().as_tuple(), end.as_int().as_tuple())) + + return translated_tile + + def to_graph(self, shape, only_inside=True, pad=True): + """Apply this tile to a shape, repeating as necessary. + + Return value: + networkx.Graph with edges corresponding to lines in the pattern. + Each edge has an attribute 'line_string' with the LineString + representation of this edge. + """ + shape_center, shape_width, shape_height = self._get_center_and_dimensions(shape) + shape_diagonal = (shape_width ** 2 + shape_height ** 2) ** 0.5 + graph = Graph() + + if pad: + shape = shape.buffer(-self.buffer_size) + + prepared_shape = prep(shape) + + tiles0 = ceil(shape_diagonal / self.shift0.length()) + 2 + tiles1 = ceil(shape_diagonal / self.shift1.length()) + 2 + for repeat0 in range(floor(-tiles0 / 2), ceil(tiles0 / 2)): + for repeat1 in range(floor(-tiles1 / 2), ceil(tiles1 / 2)): + shift0 = repeat0 * self.shift0 + shape_center + shift1 = repeat1 * self.shift1 + shape_center + this_tile = self.translate_tile(shift0 + shift1) + for line in this_tile: + line_string = LineString(line) + if not only_inside or prepared_shape.contains(line_string): + graph.add_edge(line[0], line[1], line_string=line_string, weight=random() + 0.1) + + return graph + + +def all_tile_paths(): + return [os.path.join(guess_inkscape_config_path(), 'tiles'), + get_bundled_dir('tiles')] + + +def all_tiles(): + for tile_dir in all_tile_paths(): + try: + for tile_file in sorted(os.listdir(tile_dir)): + yield Tile(os.path.join(tile_dir, tile_file)) + except FileNotFoundError: + pass diff --git a/tiles/diamond_square.svg b/tiles/diamond_square.svg new file mode 100644 index 00000000..aea71d3a --- /dev/null +++ b/tiles/diamond_square.svg @@ -0,0 +1,119 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/tiles/hexagon.svg b/tiles/hexagon.svg new file mode 100644 index 00000000..ec6faf13 --- /dev/null +++ b/tiles/hexagon.svg @@ -0,0 +1,116 @@ + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3 From ba835b4f5e33f404b7bed9369a1b425a67b312c5 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 16 Jan 2023 14:27:06 -0500 Subject: meander fill: initial version --- lib/elements/fill_stitch.py | 21 ++++++++- lib/stitches/meander_fill.py | 104 +++++++++++++++++++++++++++++++++++++++++++ lib/svg/tags.py | 1 + lib/tiles.py | 96 ++++++++++++++++++++++++--------------- lib/utils/list.py | 15 +++++++ 5 files changed, 200 insertions(+), 37 deletions(-) create mode 100644 lib/stitches/meander_fill.py create mode 100644 lib/utils/list.py diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index fb8838cc..fbaab0c2 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -17,8 +17,10 @@ from ..i18n import _ from ..marker import get_marker_elements from ..stitch_plan import StitchGroup from ..stitches import auto_fill, contour_fill, guided_fill, legacy_fill +from ..stitches.meander_fill import meander_fill from ..svg import PIXELS_PER_MM from ..svg.tags import INKSCAPE_LABEL +from .. import tiles from ..utils import cache, version from .element import EmbroideryElement, param from .validation import ValidationError, ValidationWarning @@ -107,7 +109,7 @@ class FillStitch(EmbroideryElement): @property @param('fill_method', _('Fill method'), type='dropdown', default=0, - options=[_("Auto Fill"), _("Contour Fill"), _("Guided Fill"), _("Legacy Fill")], sort_index=2) + options=[_("Auto Fill"), _("Contour Fill"), _("Guided Fill"), _("Legacy Fill"), _("Meander Fill")], sort_index=2) def fill_method(self): return self.get_int_param('fill_method', 0) @@ -146,7 +148,7 @@ class FillStitch(EmbroideryElement): type='integer', unit='mm', default=0, - select_items=[('fill_method', 1)], + select_items=[('fill_method', 1), ('fill_method', 4)], sort_index=5) def smoothness(self): return self.get_float_param('smoothness_mm', 0) @@ -156,6 +158,12 @@ class FillStitch(EmbroideryElement): def clockwise(self): return self.get_boolean_param('clockwise', True) + @property + @param('meander_pattern', _('Meander Pattern'), type='dropdown', default=0, + options=[tile.name for tile in tiles.all_tiles()], select_items=[('fill_method', 4)], sort_index=3) + def meander_pattern(self): + return self.get_param('meander_pattern', None) + @property @param('angle', _('Angle of lines of stitches'), @@ -592,6 +600,8 @@ class FillStitch(EmbroideryElement): stitch_groups.extend(self.do_contour_fill(fill_shape, previous_stitch_group, start)) elif self.fill_method == 2: stitch_groups.extend(self.do_guided_fill(fill_shape, previous_stitch_group, start, end)) + elif self.fill_method == 4: + stitch_groups.extend(self.do_meander_fill(fill_shape, start, end)) except ExitThread: raise except Exception: @@ -723,6 +733,13 @@ class FillStitch(EmbroideryElement): )) return [stitch_group] + def do_meander_fill(self, shape, starting_point, ending_point): + stitch_group = StitchGroup( + color=self.color, + tags=("meander_fill", "meander_fill_top"), + stitches=meander_fill(self, shape, starting_point, ending_point)) + return [stitch_group] + @cache def _get_guide_lines(self, multiple=False): guide_lines = get_marker_elements(self.node, "guide-line", False, True) diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py new file mode 100644 index 00000000..2ac3cd03 --- /dev/null +++ b/lib/stitches/meander_fill.py @@ -0,0 +1,104 @@ +from shapely.geometry import MultiPoint, Point +from shapely.ops import nearest_points +import networkx as nx + +from .. import tiles +from ..debug import debug +from ..utils.list import poprandom + + +def meander_fill(fill, shape, starting_point, ending_point): + tile = get_tile(fill.meander_pattern) + if not tile: + return [] + + graph = tile.to_graph(shape) + start, end = find_starting_and_ending_nodes(graph, starting_point, ending_point) + + return generate_meander_path(graph, start, end) + + +def get_tile(tile_name): + all_tiles = {tile.name: tile for tile in tiles.all_tiles()} + + try: + return all_tiles.get(tile_name, all_tiles.popitem()[1]) + except KeyError: + return None + + +def find_starting_and_ending_nodes(graph, starting_point, ending_point): + all_points = MultiPoint(list(graph)) + + starting_node = nearest_points(starting_point, all_points)[1].coords[0] + ending_node = nearest_points(ending_point, all_points)[1].coords[0] + + if starting_node == ending_node: + # We need a path to start with, so pick a new ending node + all_points = all_points.difference(Point(starting_node)) + ending_node = nearest_points(ending_point, all_points)[1].coords[0] + + return starting_node, ending_node + + +def find_initial_path(graph, start, end): + # We need some path to start with. We could use + # nx.all_simple_paths(graph, start, end) and choose the first one. + # However, that tends to pick a really "orderly" path. Shortest + # path looks more random. + return nx.shortest_path(graph, start, end) + + +def generate_meander_path(graph, start, end): + path = find_initial_path(graph, start, end) + path_edges = list(zip(path[:-1], path[1:])) + graph.remove_edges_from(path_edges) + graph_nodes = set(graph) - set(path) + + edges_to_consider = list(path_edges) + meander_path = path_edges + while edges_to_consider: + while edges_to_consider: + edge = poprandom(edges_to_consider) + edges_to_consider.extend(replace_edge(meander_path, edge, graph, graph_nodes)) + + edge_pairs = list(zip(path[:-1], path[1:])) + while edge_pairs: + edge1, edge2 = poprandom(edge_pairs) + edges_to_consider.extend(replace_edge_pair(meander_path, edge1, edge2, graph, graph_nodes)) + + return meander_path + + +def replace_edge(path, edge, graph, graph_nodes): + subgraph = graph.subgraph(graph_nodes | set(edge)) + new_path = None + for new_path in nx.all_simple_edge_paths(subgraph, edge[0], edge[1], 7): + if len(new_path) > 1: + break + if new_path is None or len(new_path) == 1: + return [] + i = path.index(edge) + path[i:i + 1] = new_path + graph.remove_edges_from(new_path) + graph_nodes.difference_update(start for start, end in new_path) + debug.log(f"found new path of length {len(new_path)} at position {i}") + + return new_path + + +def replace_edge_pair(path, edge1, edge2, graph, graph_nodes): + subgraph = graph.subgraph(graph_nodes | {edge1[0], edge2[1]}) + new_path = None + for new_path in nx.all_simple_edge_paths(subgraph, edge1[0], edge2[1], 10): + if len(new_path) > 2: + break + if new_path is None or len(new_path) <= 2: + return [] + i = path.index(edge1) + path[i:i + 2] = new_path + graph.remove_edges_from(new_path) + graph_nodes.difference_update(start for start, end in new_path) + debug.log(f"found new pair path of length {len(new_path)} at position {i}") + + return new_path diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 8c1dd558..4979b58a 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -69,6 +69,7 @@ inkstitch_attribs = [ 'smoothness_mm', 'clockwise', 'reverse', + 'meander_pattern', 'expand_mm', 'fill_underlay', 'fill_underlay_angle', diff --git a/lib/tiles.py b/lib/tiles.py index 34097f67..e9f0305a 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -5,8 +5,10 @@ import os from shapely.geometry import LineString from shapely.prepared import prep +from .debug import debug from .svg import apply_transforms -from .utils import get_bundled_dir, guess_inkscape_config_path, Point +from .svg.tags import SODIPODI_NAMEDVIEW +from .utils import cache, get_bundled_dir, guess_inkscape_config_path, Point from random import random @@ -15,51 +17,68 @@ class Tile: self._load_tile(path) def _load_tile(self, tile_path): - tile_svg = inkex.load_svg(tile_path) - self.name = self._get_name(tile_path) - self._load_paths(tile_svg) - self._load_dimensions(tile_svg) - self._load_buffer_size(tile_svg) - self._load_parallelogram(tile_svg) + self.tile_svg = inkex.load_svg(tile_path) + self.tile_path = tile_path + self.name = self._get_name(self.tile_svg, tile_path) + self.tile = None + self.width = None + self.height = None + self.buffer_size = None + self.shift0 = None + self.shift1 = None def __repr__(self): return f"Tile({self.name}, {self.shift0}, {self.shift1})" __str__ = __repr__ - def _get_name(self, tile_path): - return os.path.splitext(os.path.basename(tile_path))[0] + def _get_name(self, tile_svg, tile_path): + name = tile_svg.get(SODIPODI_NAMEDVIEW) + if name: + return name + else: + return os.path.splitext(os.path.basename(tile_path))[0] + + def _load(self): + self._load_paths(self.tile_svg) + self._load_dimensions(self.tile_svg) + self._load_buffer_size(self.tile_svg) + self._load_parallelogram(self.tile_svg) def _load_paths(self, tile_svg): - path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS) - self.tile = self._path_elements_to_line_strings(path_elements) - # self.center, ignore, ignore = self._get_center_and_dimensions(self.tile) + if self.tile is None: + path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS) + self.tile = self._path_elements_to_line_strings(path_elements) + # self.center, ignore, ignore = self._get_center_and_dimensions(self.tile) def _load_dimensions(self, tile_svg): - svg_element = tile_svg.getroot() - self.width = svg_element.viewport_width - self.height = svg_element.viewport_height + if self.width is None: + svg_element = tile_svg.getroot() + self.width = svg_element.viewport_width + self.height = svg_element.viewport_height def _load_buffer_size(self, tile_svg): - circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS) - if circle_elements: - self.buffer_size = circle_elements[0].radius - else: - self.buffer_size = 0 + if self.buffer_size is None: + circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS) + if circle_elements: + self.buffer_size = circle_elements[0].radius + else: + self.buffer_size = 0 def _load_parallelogram(self, tile_svg): - parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS) - if parallelogram_elements: - path_element = parallelogram_elements[0] - path = apply_transforms(path_element.get_path(), path_element) - subpaths = path.to_superpath() - subpath = subpaths[0] - points = [Point.from_tuple(p[1]) for p in subpath] - self.shift0 = points[1] - points[0] - self.shift1 = points[2] - points[1] - else: - self.shift0 = Point(self.width, 0) - self.shift1 = Point(0, self.height) + if self.shift0 is None: + parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS) + if parallelogram_elements: + path_element = parallelogram_elements[0] + path = apply_transforms(path_element.get_path(), path_element) + subpaths = path.to_superpath() + subpath = subpaths[0] + points = [Point.from_tuple(p[1]) for p in subpath] + self.shift0 = points[1] - points[0] + self.shift1 = points[2] - points[1] + else: + self.shift0 = Point(self.width, 0) + self.shift1 = Point(0, self.height) def _path_elements_to_line_strings(self, path_elements): lines = [] @@ -80,7 +99,7 @@ class Tile: return center, width, height - def translate_tile(self, shift): + def _translate_tile(self, shift): translated_tile = [] for start, end in self.tile: @@ -90,6 +109,7 @@ class Tile: return translated_tile + @debug.time def to_graph(self, shape, only_inside=True, pad=True): """Apply this tile to a shape, repeating as necessary. @@ -98,6 +118,8 @@ class Tile: Each edge has an attribute 'line_string' with the LineString representation of this edge. """ + self._load() + shape_center, shape_width, shape_height = self._get_center_and_dimensions(shape) shape_diagonal = (shape_width ** 2 + shape_height ** 2) ** 0.5 graph = Graph() @@ -113,7 +135,7 @@ class Tile: for repeat1 in range(floor(-tiles1 / 2), ceil(tiles1 / 2)): shift0 = repeat0 * self.shift0 + shape_center shift1 = repeat1 * self.shift1 + shape_center - this_tile = self.translate_tile(shift0 + shift1) + this_tile = self._translate_tile(shift0 + shift1) for line in this_tile: line_string = LineString(line) if not only_inside or prepared_shape.contains(line_string): @@ -127,10 +149,14 @@ def all_tile_paths(): get_bundled_dir('tiles')] +@cache def all_tiles(): + tiles = [] for tile_dir in all_tile_paths(): try: for tile_file in sorted(os.listdir(tile_dir)): - yield Tile(os.path.join(tile_dir, tile_file)) + tiles.append(Tile(os.path.join(tile_dir, tile_file))) except FileNotFoundError: pass + + return tiles diff --git a/lib/utils/list.py b/lib/utils/list.py new file mode 100644 index 00000000..2bfe2cd7 --- /dev/null +++ b/lib/utils/list.py @@ -0,0 +1,15 @@ +from random import randrange + + +def poprandom(sequence): + index = randrange(len(sequence)) + item = sequence[index] + + # It's O(1) to pop the last item, and O(n) to pop any other item. So we'll + # always pop the last item and put it in the slot vacated by the item we're + # popping. + last_item = sequence.pop() + if index < len(sequence): + sequence[index] = last_item + + return item -- cgit v1.2.3 From 85f921cd33b402733cea4ce53206aa70a6092d49 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 16 Jan 2023 14:31:51 -0500 Subject: typo fix --- lib/utils/prng.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/prng.py b/lib/utils/prng.py index 2ec037c6..9face2be 100644 --- a/lib/utils/prng.py +++ b/lib/utils/prng.py @@ -3,7 +3,7 @@ from math import ceil from itertools import count, chain import numpy as np -# Framework for reproducable pseudo-random number generation. +# Framework for reproducible pseudo-random number generation. # Unlike python's random module (which uses a stateful generator based on global variables), # a counter-mode PRNG like uniformFloats can be used to generate multiple, independent random streams -- cgit v1.2.3 From e2965e78f03fb41c9a02c92ef120caf038b837ae Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 16 Jan 2023 14:34:29 -0500 Subject: use snake case per python coding standard --- lib/elements/satin_column.py | 8 ++++---- lib/stitches/running_stitch.py | 6 +++--- lib/utils/prng.py | 26 +++++++++++++------------- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index 4028ad27..eba63c6c 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.py @@ -783,7 +783,7 @@ class SatinColumn(EmbroideryElement): # pre-cache ramdomised parameters to avoid property calls in loop if use_random: - seed = prng.joinArgs(self.random_seed, "satin-points") + seed = prng.join_args(self.random_seed, "satin-points") offset_proportional_min = np.array(offset_proportional) - self.random_width_decrease offset_range = (self.random_width_increase + self.random_width_decrease) spacing_sigma = spacing * self.random_zigzag_spacing @@ -857,7 +857,7 @@ class SatinColumn(EmbroideryElement): if to_travel <= 0: if use_random: - roll = prng.uniformFloats(seed, cycle) + roll = prng.uniform_floats(seed, cycle) offset_prop = offset_proportional_min + roll[0:2] * offset_range to_travel = spacing + ((roll[2] - 0.5) * 2 * spacing_sigma) else: @@ -987,7 +987,7 @@ class SatinColumn(EmbroideryElement): if last_point is not None: split_points, _ = self.get_split_points( last_point, a, last_short_point, a_short, max_stitch_length, last_count, - length_sigma, random_phase, min_split_length, prng.joinArgs(seed, 'satin-split', 2*i)) + length_sigma, random_phase, min_split_length, prng.join_args(seed, 'satin-split', 2 * i)) patch.add_stitches(split_points, ("satin_column", "satin_split_stitch")) patch.add_stitch(a_short) @@ -995,7 +995,7 @@ class SatinColumn(EmbroideryElement): split_points, last_count = self.get_split_points( a, b, a_short, b_short, max_stitch_length, None, - length_sigma, random_phase, min_split_length, prng.joinArgs(seed, 'satin-split', 2*i+1)) + length_sigma, random_phase, min_split_length, prng.join_args(seed, 'satin-split', 2 * i + 1)) patch.add_stitches(split_points, ("satin_column", "satin_split_stitch")) patch.add_stitch(b_short) diff --git a/lib/stitches/running_stitch.py b/lib/stitches/running_stitch.py index 8ba53498..1dbfcaaf 100644 --- a/lib/stitches/running_stitch.py +++ b/lib/stitches/running_stitch.py @@ -24,7 +24,7 @@ def split_segment_even_n(a, b, segments: int, jitter_sigma: float = 0.0, random_ splits = np.array(range(1, segments)) / segments if random_seed is not None: - jitters = (prng.nUniformFloats(len(splits), random_seed) * 2) - 1 + jitters = (prng.n_uniform_floats(len(splits), random_seed) * 2) - 1 splits = splits + jitters * (jitter_sigma / segments) # sort the splits in case a bad roll transposes any of them @@ -39,12 +39,12 @@ def split_segment_even_dist(a, b, max_length: float, jitter_sigma: float = 0.0, def split_segment_random_phase(a, b, length: float, length_sigma: float, random_seed: str) -> typing.List[shgeo.Point]: line = shgeo.LineString([a, b]) - progress = length * prng.uniformFloats(random_seed, "phase")[0] + progress = length * prng.uniform_floats(random_seed, "phase")[0] splits = [progress] distance = line.length if progress >= distance: return [] - for x in prng.iterUniformFloats(random_seed): + for x in prng.iter_uniform_floats(random_seed): progress += length * (1 + length_sigma * (x - 0.5) * 2) if progress >= distance: break diff --git a/lib/utils/prng.py b/lib/utils/prng.py index 9face2be..33102205 100644 --- a/lib/utils/prng.py +++ b/lib/utils/prng.py @@ -13,7 +13,7 @@ import numpy as np # Using multiple counters for n-dimentional random streams is also possible and is useful for grid-like structures. -def joinArgs(*args): +def join_args(*args): # Stringifies parameters into a slash-separated string for use in hash keys. # Idempotent and associative. return "/".join([str(x) for x in args]) @@ -22,37 +22,37 @@ def joinArgs(*args): MAX_UNIFORM_INT = 2 ** 32 - 1 -def uniformInts(*args): +def uniform_ints(*args): # Single pseudo-random drawing determined by the joined parameters. # To get a longer sequence of random numbers, call this loop with a counter as one of the parameters. # Returns 8 uniformly random uint32. - s = joinArgs(*args) + s = join_args(*args) # blake2s is python's fastest hash algorithm for small inputs and is designed to be usable as a PRNG. h = blake2s(s.encode()).hexdigest() nums = [] for i in range(0, 64, 8): - nums.append(int(h[i:i+8], 16)) + nums.append(int(h[i:i + 8], 16)) return np.array(nums) -def uniformFloats(*args): +def uniform_floats(*args): # Single pseudo-random drawing determined by the joined parameters. # To get a longer sequence of random numbers, call this loop with a counter as one of the parameters. # Returns an array of 8 floats in the range [0,1] - return uniformInts(*args) / MAX_UNIFORM_INT + return uniform_ints(*args) / MAX_UNIFORM_INT -def nUniformFloats(n: int, *args): +def n_uniform_floats(n: int, *args): # returns a fixed number (which may exceed 8) of floats in the range [0,1] - seed = joinArgs(*args) - nBlocks = ceil(n/8) - blocks = [uniformFloats(seed, x) for x in range(nBlocks)] + seed = join_args(*args) + nBlocks = ceil(n / 8) + blocks = [uniform_floats(seed, x) for x in range(nBlocks)] return np.concatenate(blocks)[0:n] -def iterUniformFloats(*args): +def iter_uniform_floats(*args): # returns an infinite sequence of floats in the range [0,1] - seed = joinArgs(*args) - blocks = map(lambda x: list(uniformFloats(seed, x)), count(0)) + seed = join_args(*args) + blocks = map(lambda x: list(uniform_floats(seed, x)), count(0)) return chain.from_iterable(blocks) -- cgit v1.2.3 From 847e133f97d570e2967dfa7dcfc16a212dc2bbbc Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Tue, 17 Jan 2023 21:44:23 -0500 Subject: meander fill: more work --- lib/debug.py | 9 ++ lib/elements/fill_stitch.py | 23 +++-- lib/extensions/params.py | 21 ++++- lib/stitches/meander_fill.py | 72 ++++++++++++--- lib/svg/tags.py | 2 + lib/tiles.py | 113 ++++++++++++++---------- lib/utils/geometry.py | 12 ++- lib/utils/list.py | 14 ++- lib/utils/string.py | 7 ++ tiles/N3-11a.svg | 14 +++ tiles/N3-12.svg | 14 +++ tiles/N3-16a.svg | 14 +++ tiles/N3-17.svg | 14 +++ tiles/N3-18-modified.svg | 14 +++ tiles/N3-18.svg | 14 +++ tiles/N3-20.svg | 14 +++ tiles/N3-21.svg | 14 +++ tiles/N3-23b.svg | 14 +++ tiles/N3-25c.svg | 14 +++ tiles/N3-26b.svg | 14 +++ tiles/N3-27.svg | 14 +++ tiles/N3-2a.svg | 14 +++ tiles/N3-2b.svg | 14 +++ tiles/N3-30a.svg | 14 +++ tiles/N3-4a.svg | 14 +++ tiles/N3-4b.svg | 14 +++ tiles/N3-51b.svg | 14 +++ tiles/N3-57f.svg | 14 +++ tiles/N3-58b.svg | 14 +++ tiles/N3-6.svg | 14 +++ tiles/N3-7.svg | 14 +++ tiles/N3-8a-mistake.svg | 14 +++ tiles/N3-8a.svg | 16 ++++ tiles/N3-8b.svg | 14 +++ tiles/N4-13b-awesome.svg | 14 +++ tiles/N4-13d-awesome.svg | 206 +++++++++++++++++++++++++++++++++++++++++++ tiles/N4-13e-awesome.svg | 14 +++ tiles/N4-13f-awesome.svg | 14 +++ tiles/N4-16a-awesome.svg | 14 +++ tiles/N4-19.svg | 14 +++ tiles/N4-20.svg | 14 +++ tiles/N4-21c.svg | 14 +++ tiles/N4-22-awesome.svg | 14 +++ tiles/N4-23a.svg | 14 +++ tiles/N4-23c.svg | 14 +++ tiles/N4-27.svg | 14 +++ tiles/N4-29e.svg | 14 +++ tiles/N4-29f.svg | 14 +++ tiles/N4-31-awesome.svg | 14 +++ tiles/N4-38.svg | 14 +++ tiles/N4-42e.svg | 14 +++ tiles/N4-44.svg | 14 +++ tiles/N4-52.svg | 14 +++ tiles/N4-54d.svg | 14 +++ tiles/N4-5a-2.svg | 14 +++ tiles/N4-5a.svg | 14 +++ tiles/N4-82.svg | 14 +++ tiles/N4-85d.svg | 14 +++ tiles/N5-1e1.svg | 14 +++ tiles/N5-1q2-awesome.svg | 14 +++ tiles/N5-1t.svg | 14 +++ tiles/N6-2.svg | 14 +++ tiles/N6-5b.svg | 14 +++ tiles/N6-6a.svg | 14 +++ tiles/N6-6c.svg | 14 +++ tiles/NC5-11a.svg | 14 +++ tiles/NC5-20a.svg | 14 +++ tiles/P3-1.svg | 14 +++ tiles/P3-12.svg | 14 +++ tiles/P4-1.svg | 14 +++ tiles/P4-10.svg | 14 +++ tiles/P4-15.svg | 14 +++ tiles/P4-19.svg | 85 ++++++++++++++++++ tiles/P4-23.svg | 14 +++ tiles/P4-24.svg | 14 +++ tiles/P4-25.svg | 14 +++ tiles/P4-42.svg | 14 +++ tiles/P4-43-mod.svg | 14 +++ tiles/P4-43.svg | 14 +++ tiles/P4-47.svg | 14 +++ tiles/P5-10_11-awesome.svg | 14 +++ tiles/P5-19.svg | 14 +++ tiles/P5-23_24.svg | 14 +++ tiles/P5-4.svg | 14 +++ tiles/P6-6_11.svg | 14 +++ tiles/hex_N6-1.svg | 60 +++++++++++++ tiles/tile_test4.svg | 58 ++++++++++++ tiles/weird_one.svg | 126 ++++++++++++++++++++++++++ 88 files changed, 1769 insertions(+), 77 deletions(-) create mode 100644 tiles/N3-11a.svg create mode 100644 tiles/N3-12.svg create mode 100644 tiles/N3-16a.svg create mode 100644 tiles/N3-17.svg create mode 100644 tiles/N3-18-modified.svg create mode 100644 tiles/N3-18.svg create mode 100644 tiles/N3-20.svg create mode 100644 tiles/N3-21.svg create mode 100644 tiles/N3-23b.svg create mode 100644 tiles/N3-25c.svg create mode 100644 tiles/N3-26b.svg create mode 100644 tiles/N3-27.svg create mode 100644 tiles/N3-2a.svg create mode 100644 tiles/N3-2b.svg create mode 100644 tiles/N3-30a.svg create mode 100644 tiles/N3-4a.svg create mode 100644 tiles/N3-4b.svg create mode 100644 tiles/N3-51b.svg create mode 100644 tiles/N3-57f.svg create mode 100644 tiles/N3-58b.svg create mode 100644 tiles/N3-6.svg create mode 100644 tiles/N3-7.svg create mode 100644 tiles/N3-8a-mistake.svg create mode 100644 tiles/N3-8a.svg create mode 100644 tiles/N3-8b.svg create mode 100644 tiles/N4-13b-awesome.svg create mode 100644 tiles/N4-13d-awesome.svg create mode 100644 tiles/N4-13e-awesome.svg create mode 100644 tiles/N4-13f-awesome.svg create mode 100644 tiles/N4-16a-awesome.svg create mode 100644 tiles/N4-19.svg create mode 100644 tiles/N4-20.svg create mode 100644 tiles/N4-21c.svg create mode 100644 tiles/N4-22-awesome.svg create mode 100644 tiles/N4-23a.svg create mode 100644 tiles/N4-23c.svg create mode 100644 tiles/N4-27.svg create mode 100644 tiles/N4-29e.svg create mode 100644 tiles/N4-29f.svg create mode 100644 tiles/N4-31-awesome.svg create mode 100644 tiles/N4-38.svg create mode 100644 tiles/N4-42e.svg create mode 100644 tiles/N4-44.svg create mode 100644 tiles/N4-52.svg create mode 100644 tiles/N4-54d.svg create mode 100644 tiles/N4-5a-2.svg create mode 100644 tiles/N4-5a.svg create mode 100644 tiles/N4-82.svg create mode 100644 tiles/N4-85d.svg create mode 100644 tiles/N5-1e1.svg create mode 100644 tiles/N5-1q2-awesome.svg create mode 100644 tiles/N5-1t.svg create mode 100644 tiles/N6-2.svg create mode 100644 tiles/N6-5b.svg create mode 100644 tiles/N6-6a.svg create mode 100644 tiles/N6-6c.svg create mode 100644 tiles/NC5-11a.svg create mode 100644 tiles/NC5-20a.svg create mode 100644 tiles/P3-1.svg create mode 100644 tiles/P3-12.svg create mode 100644 tiles/P4-1.svg create mode 100644 tiles/P4-10.svg create mode 100644 tiles/P4-15.svg create mode 100644 tiles/P4-19.svg create mode 100644 tiles/P4-23.svg create mode 100644 tiles/P4-24.svg create mode 100644 tiles/P4-25.svg create mode 100644 tiles/P4-42.svg create mode 100644 tiles/P4-43-mod.svg create mode 100644 tiles/P4-43.svg create mode 100644 tiles/P4-47.svg create mode 100644 tiles/P5-10_11-awesome.svg create mode 100644 tiles/P5-19.svg create mode 100644 tiles/P5-23_24.svg create mode 100644 tiles/P5-4.svg create mode 100644 tiles/P6-6_11.svg create mode 100644 tiles/hex_N6-1.svg create mode 100644 tiles/tile_test4.svg create mode 100644 tiles/weird_one.svg diff --git a/lib/debug.py b/lib/debug.py index 0d6af104..94d32cea 100644 --- a/lib/debug.py +++ b/lib/debug.py @@ -233,6 +233,15 @@ class Debug(object): INKSCAPE_LABEL: name })) + @check_enabled + def log_point(self, point, name="point", color=None): + self.log_svg_element(etree.Element("circle", { + "cx": str(point.x), + "cy": str(point.y), + "r": "1", + "style": str(inkex.Style({"fill": "#000000"})), + })) + @check_enabled def log_graph(self, graph, name="Graph", color=None): d = "" diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index fbaab0c2..790eec5c 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -5,6 +5,7 @@ import logging import math +import numpy as np import re import sys import traceback @@ -142,7 +143,7 @@ class FillStitch(EmbroideryElement): @property @param('smoothness_mm', _('Smoothness'), tooltip=_( - 'Smooth the stitch path. Smoothness limits how far the smoothed stitch path ' + + 'Smooth the stitch path. Smoothness limits approximately how far the smoothed stitch path ' + 'is allowed to deviate from the original path. Hint: a lower stitchc tolerance may be needed too.' ), type='integer', @@ -159,11 +160,21 @@ class FillStitch(EmbroideryElement): return self.get_boolean_param('clockwise', True) @property - @param('meander_pattern', _('Meander Pattern'), type='dropdown', default=0, + @param('meander_pattern', _('Meander Pattern'), type='select', default=0, options=[tile.name for tile in tiles.all_tiles()], select_items=[('fill_method', 4)], sort_index=3) def meander_pattern(self): return self.get_param('meander_pattern', None) + @property + @param('meander_scale_percent', _('Meander pattern scale'), type='float', unit="%", default=100, select_items=[('fill_method', 4)], sort_index=4) + def meander_scale(self): + return np.maximum(self.get_split_float_param('meander_scale_percent', (100, 100)), (10, 10)) / 100 + + @property + @param('meander_padding_mm', _('Meander padding'), type='float', unit="mm", default=0, select_items=[('fill_method', 4)], sort_index=5) + def meander_padding(self): + return self.get_float_param('meander_padding_mm', 0) + @property @param('angle', _('Angle of lines of stitches'), @@ -593,7 +604,7 @@ class FillStitch(EmbroideryElement): stitch_groups.extend(underlay_stitch_groups) fill_shapes = self.fill_shape(shape) - for fill_shape in fill_shapes.geoms: + for i, fill_shape in enumerate(fill_shapes.geoms): if self.fill_method == 0: stitch_groups.extend(self.do_auto_fill(fill_shape, previous_stitch_group, start, end)) if self.fill_method == 1: @@ -601,7 +612,7 @@ class FillStitch(EmbroideryElement): elif self.fill_method == 2: stitch_groups.extend(self.do_guided_fill(fill_shape, previous_stitch_group, start, end)) elif self.fill_method == 4: - stitch_groups.extend(self.do_meander_fill(fill_shape, start, end)) + stitch_groups.extend(self.do_meander_fill(fill_shape, i, start, end)) except ExitThread: raise except Exception: @@ -733,11 +744,11 @@ class FillStitch(EmbroideryElement): )) return [stitch_group] - def do_meander_fill(self, shape, starting_point, ending_point): + def do_meander_fill(self, shape, i, starting_point, ending_point): stitch_group = StitchGroup( color=self.color, tags=("meander_fill", "meander_fill_top"), - stitches=meander_fill(self, shape, starting_point, ending_point)) + stitches=meander_fill(self, shape, i, starting_point, ending_point)) return [stitch_group] @cache diff --git a/lib/extensions/params.py b/lib/extensions/params.py index 1262ceb6..a34aeeae 100644 --- a/lib/extensions/params.py +++ b/lib/extensions/params.py @@ -190,8 +190,13 @@ class ParamsTab(ScrolledPanel): try: values[name] = input.GetValue() except AttributeError: - # dropdown - values[name] = input.GetSelection() + param = self.dict_of_choices[name]['param'] + if param.type == 'dropdown': + # dropdown + values[name] = input.GetSelection() + elif param.type == 'select': + selection = input.GetSelection() + values[name] = param.options[selection] return values @@ -368,9 +373,17 @@ class ParamsTab(ScrolledPanel): input.SetValue(param.values[0]) input.Bind(wx.EVT_CHECKBOX, self.changed) - elif param.type == 'dropdown': + elif param.type in ('dropdown', 'select'): input = wx.Choice(self, wx.ID_ANY, choices=param.options) - input.SetSelection(int(param.values[0])) + + if param.type == 'dropdown': + input.SetSelection(int(param.values[0])) + else: + try: + input.SetSelection(param.options.index(param.values[0])) + except ValueError: + input.SetSelection(param.default) + input.Bind(wx.EVT_CHOICE, self.changed) input.Bind(wx.EVT_CHOICE, self.update_choice_state) self.dict_of_choices[param.name] = { diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py index 2ac3cd03..cb6e3f4e 100644 --- a/lib/stitches/meander_fill.py +++ b/lib/stitches/meander_fill.py @@ -1,21 +1,33 @@ +import networkx as nx from shapely.geometry import MultiPoint, Point from shapely.ops import nearest_points -import networkx as nx +from .running_stitch import running_stitch from .. import tiles from ..debug import debug +from ..stitch_plan import Stitch +from ..utils import smooth_path +from ..utils.geometry import Point as InkStitchPoint from ..utils.list import poprandom +from ..utils.prng import iter_uniform_floats -def meander_fill(fill, shape, starting_point, ending_point): +def meander_fill(fill, shape, shape_index, starting_point, ending_point): + debug.log(f"meander pattern: {fill.meander_pattern}") tile = get_tile(fill.meander_pattern) if not tile: return [] - graph = tile.to_graph(shape) - start, end = find_starting_and_ending_nodes(graph, starting_point, ending_point) + debug.log(f"tile name: {tile.name}") - return generate_meander_path(graph, start, end) + # debug.log_line_strings(ensure_geometry_collection(shape.boundary).geoms, 'Meander shape') + graph = tile.to_graph(shape, fill.meander_scale, fill.meander_padding) + # debug.log_graph(graph, 'Meander graph') + # debug.log(f"graph connected? {nx.is_connected(graph)}") + start, end = find_starting_and_ending_nodes(graph, shape, starting_point, ending_point) + rng = iter_uniform_floats(fill.random_seed, 'meander-fill', shape_index) + + return post_process(generate_meander_path(graph, start, end, rng), fill) def get_tile(tile_name): @@ -27,7 +39,16 @@ def get_tile(tile_name): return None -def find_starting_and_ending_nodes(graph, starting_point, ending_point): +def find_starting_and_ending_nodes(graph, shape, starting_point, ending_point): + if starting_point is None: + starting_point = shape.exterior.coords[0] + starting_point = Point(starting_point) + + if ending_point is None: + ending_point = starting_point + else: + ending_point = Point(ending_point) + all_points = MultiPoint(list(graph)) starting_node = nearest_points(starting_point, all_points)[1].coords[0] @@ -49,7 +70,8 @@ def find_initial_path(graph, start, end): return nx.shortest_path(graph, start, end) -def generate_meander_path(graph, start, end): +@debug.time +def generate_meander_path(graph, start, end, rng): path = find_initial_path(graph, start, end) path_edges = list(zip(path[:-1], path[1:])) graph.remove_edges_from(path_edges) @@ -59,15 +81,16 @@ def generate_meander_path(graph, start, end): meander_path = path_edges while edges_to_consider: while edges_to_consider: - edge = poprandom(edges_to_consider) + edge = poprandom(edges_to_consider, rng) edges_to_consider.extend(replace_edge(meander_path, edge, graph, graph_nodes)) - edge_pairs = list(zip(path[:-1], path[1:])) + edge_pairs = list(zip(meander_path[:-1], meander_path[1:])) while edge_pairs: - edge1, edge2 = poprandom(edge_pairs) + edge1, edge2 = poprandom(edge_pairs, rng) edges_to_consider.extend(replace_edge_pair(meander_path, edge1, edge2, graph, graph_nodes)) + break - return meander_path + return path_to_points(meander_path) def replace_edge(path, edge, graph, graph_nodes): @@ -81,8 +104,9 @@ def replace_edge(path, edge, graph, graph_nodes): i = path.index(edge) path[i:i + 1] = new_path graph.remove_edges_from(new_path) + # do I need to remove the last one too? graph_nodes.difference_update(start for start, end in new_path) - debug.log(f"found new path of length {len(new_path)} at position {i}") + # debug.log(f"found new path of length {len(new_path)} at position {i}") return new_path @@ -98,7 +122,29 @@ def replace_edge_pair(path, edge1, edge2, graph, graph_nodes): i = path.index(edge1) path[i:i + 2] = new_path graph.remove_edges_from(new_path) + # do I need to remove the last one too? graph_nodes.difference_update(start for start, end in new_path) - debug.log(f"found new pair path of length {len(new_path)} at position {i}") + # debug.log(f"found new pair path of length {len(new_path)} at position {i}") return new_path + + +@debug.time +def post_process(points, fill): + debug.log(f"smoothness: {fill.smoothness}") + # debug.log_line_string(LineString(points), "pre-smoothed", "#FF0000") + smoothed_points = smooth_path(points, fill.smoothness) + smoothed_points = [InkStitchPoint.from_tuple(point) for point in smoothed_points] + + stitches = running_stitch(smoothed_points, fill.running_stitch_length, fill.running_stitch_tolerance) + stitches = [Stitch(point) for point in stitches] + + return stitches + + +def path_to_points(path): + points = [start for start, end in path] + if path: + points.append(path[-1][1]) + + return points diff --git a/lib/svg/tags.py b/lib/svg/tags.py index 4979b58a..32744d1b 100644 --- a/lib/svg/tags.py +++ b/lib/svg/tags.py @@ -70,6 +70,8 @@ inkstitch_attribs = [ 'clockwise', 'reverse', 'meander_pattern', + 'meander_scale_percent', + 'meander_padding_mm', 'expand_mm', 'fill_underlay', 'fill_underlay_angle', diff --git a/lib/tiles.py b/lib/tiles.py index e9f0305a..2bef7a19 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -1,15 +1,15 @@ -import inkex +import os from math import ceil, floor + +import inkex +import lxml from networkx import Graph -import os from shapely.geometry import LineString from shapely.prepared import prep from .debug import debug from .svg import apply_transforms -from .svg.tags import SODIPODI_NAMEDVIEW -from .utils import cache, get_bundled_dir, guess_inkscape_config_path, Point -from random import random +from .utils import Point, cache, get_bundled_dir, guess_inkscape_config_path class Tile: @@ -33,11 +33,7 @@ class Tile: __str__ = __repr__ def _get_name(self, tile_svg, tile_path): - name = tile_svg.get(SODIPODI_NAMEDVIEW) - if name: - return name - else: - return os.path.splitext(os.path.basename(tile_path))[0] + return os.path.splitext(os.path.basename(tile_path)[0]) def _load(self): self._load_paths(self.tile_svg) @@ -46,39 +42,35 @@ class Tile: self._load_parallelogram(self.tile_svg) def _load_paths(self, tile_svg): - if self.tile is None: - path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS) - self.tile = self._path_elements_to_line_strings(path_elements) - # self.center, ignore, ignore = self._get_center_and_dimensions(self.tile) + path_elements = tile_svg.findall('.//svg:path', namespaces=inkex.NSS) + self.tile = self._path_elements_to_line_strings(path_elements) + # self.center, ignore, ignore = self._get_center_and_dimensions(self.tile) def _load_dimensions(self, tile_svg): - if self.width is None: - svg_element = tile_svg.getroot() - self.width = svg_element.viewport_width - self.height = svg_element.viewport_height + svg_element = tile_svg.getroot() + self.width = svg_element.viewport_width + self.height = svg_element.viewport_height def _load_buffer_size(self, tile_svg): - if self.buffer_size is None: - circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS) - if circle_elements: - self.buffer_size = circle_elements[0].radius - else: - self.buffer_size = 0 + circle_elements = tile_svg.findall('.//svg:circle', namespaces=inkex.NSS) + if circle_elements: + self.buffer_size = circle_elements[0].radius + else: + self.buffer_size = 0 def _load_parallelogram(self, tile_svg): - if self.shift0 is None: - parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS) - if parallelogram_elements: - path_element = parallelogram_elements[0] - path = apply_transforms(path_element.get_path(), path_element) - subpaths = path.to_superpath() - subpath = subpaths[0] - points = [Point.from_tuple(p[1]) for p in subpath] - self.shift0 = points[1] - points[0] - self.shift1 = points[2] - points[1] - else: - self.shift0 = Point(self.width, 0) - self.shift1 = Point(0, self.height) + parallelogram_elements = tile_svg.findall(".//svg:*[@class='para']", namespaces=inkex.NSS) + if parallelogram_elements: + path_element = parallelogram_elements[0] + path = apply_transforms(path_element.get_path(), path_element) + subpaths = path.to_superpath() + subpath = subpaths[0] + points = [Point.from_tuple(p[1]) for p in subpath] + self.shift0 = points[1] - points[0] + self.shift1 = points[2] - points[1] + else: + self.shift0 = Point(self.width, 0) + self.shift1 = Point(0, self.height) def _path_elements_to_line_strings(self, path_elements): lines = [] @@ -109,8 +101,19 @@ class Tile: return translated_tile + def _scale(self, x_scale, y_scale): + self.shift0 = self.shift0.scale(x_scale, y_scale) + self.shift1 = self.shift1.scale(x_scale, y_scale) + + scaled_tile = [] + for start, end in self.tile: + start = start.scale(x_scale, y_scale) + end = end.scale(x_scale, y_scale) + scaled_tile.append((start, end)) + self.tile = scaled_tile + @debug.time - def to_graph(self, shape, only_inside=True, pad=True): + def to_graph(self, shape, scale, buffer=None): """Apply this tile to a shape, repeating as necessary. Return value: @@ -119,27 +122,36 @@ class Tile: representation of this edge. """ self._load() + x_scale, y_scale = scale + self._scale(x_scale, y_scale) shape_center, shape_width, shape_height = self._get_center_and_dimensions(shape) - shape_diagonal = (shape_width ** 2 + shape_height ** 2) ** 0.5 - graph = Graph() + shape_diagonal = Point(shape_width, shape_height).length() + + if not buffer: + average_scale = (x_scale + y_scale) / 2 + buffer = self.buffer_size * average_scale - if pad: - shape = shape.buffer(-self.buffer_size) + contracted_shape = shape.buffer(-buffer) + prepared_shape = prep(contracted_shape) - prepared_shape = prep(shape) + # debug.log_line_string(contracted_shape.exterior, "contracted shape") + return self._generate_graph(prepared_shape, shape_center, shape_diagonal) + + def _generate_graph(self, shape, shape_center, shape_diagonal): + graph = Graph() tiles0 = ceil(shape_diagonal / self.shift0.length()) + 2 tiles1 = ceil(shape_diagonal / self.shift1.length()) + 2 for repeat0 in range(floor(-tiles0 / 2), ceil(tiles0 / 2)): for repeat1 in range(floor(-tiles1 / 2), ceil(tiles1 / 2)): - shift0 = repeat0 * self.shift0 + shape_center - shift1 = repeat1 * self.shift1 + shape_center - this_tile = self._translate_tile(shift0 + shift1) + shift0 = repeat0 * self.shift0 + shift1 = repeat1 * self.shift1 + this_tile = self._translate_tile(shift0 + shift1 + shape_center) for line in this_tile: line_string = LineString(line) - if not only_inside or prepared_shape.contains(line_string): - graph.add_edge(line[0], line[1], line_string=line_string, weight=random() + 0.1) + if shape.contains(line_string): + graph.add_edge(line[0], line[1]) return graph @@ -155,7 +167,10 @@ def all_tiles(): for tile_dir in all_tile_paths(): try: for tile_file in sorted(os.listdir(tile_dir)): - tiles.append(Tile(os.path.join(tile_dir, tile_file))) + try: + tiles.append(Tile(os.path.join(tile_dir, tile_file))) + except (OSError, lxml.etree.XMLSyntaxError): + pass except FileNotFoundError: pass diff --git a/lib/utils/geometry.py b/lib/utils/geometry.py index 2903bc56..366a433f 100644 --- a/lib/utils/geometry.py +++ b/lib/utils/geometry.py @@ -166,7 +166,7 @@ def _remove_duplicate_coordinates(coords_array): return coords_array[keepers] -def smooth_path(path, smoothness=100.0): +def smooth_path(path, smoothness=1.0): """Smooth a path of coordinates. Arguments: @@ -178,6 +178,11 @@ def smooth_path(path, smoothness=100.0): A list of Points. """ + if smoothness == 0: + # s of exactly zero seems to indicate a default level of smoothing + # in splprep, so we'll just exit instead. + return path + # splprep blows up on duplicated consecutive points with "Invalid inputs" coords = _remove_duplicate_coordinates(np.array(path)) num_points = len(coords) @@ -188,7 +193,7 @@ def smooth_path(path, smoothness=100.0): # the smoothed path and the original path is equal to the smoothness. # In practical terms, if smoothness is 1mm, then the smoothed path can be # up to 1mm away from the original path. - s = num_points * smoothness ** 2 + s = num_points * (smoothness ** 2) # .T transposes the array (for some reason splprep expects # [[x1, x2, ...], [y1, y2, ...]] @@ -280,6 +285,9 @@ class Point: def rotate(self, angle): return self.__class__(self.x * math.cos(angle) - self.y * math.sin(angle), self.y * math.cos(angle) + self.x * math.sin(angle)) + def scale(self, x_scale, y_scale): + return self.__class__(self.x * x_scale, self.y * y_scale) + def as_int(self): return self.__class__(int(round(self.x)), int(round(self.y))) diff --git a/lib/utils/list.py b/lib/utils/list.py index 2bfe2cd7..efa3969e 100644 --- a/lib/utils/list.py +++ b/lib/utils/list.py @@ -1,8 +1,16 @@ -from random import randrange +import random -def poprandom(sequence): - index = randrange(len(sequence)) +def _uniform_rng(): + while True: + yield random.uniform(0, 1) + + +_rng = _uniform_rng() + + +def poprandom(sequence, rng=_rng): + index = int(round(next(rng) * (len(sequence) - 1))) item = sequence[index] # It's O(1) to pop the last item, and O(n) to pop any other item. So we'll diff --git a/lib/utils/string.py b/lib/utils/string.py index cb852ce3..e9204076 100644 --- a/lib/utils/string.py +++ b/lib/utils/string.py @@ -8,3 +8,10 @@ def string_to_floats(string, delimiter=","): floats = string.split(delimiter) return [float(num) for num in floats] + + +def remove_suffix(string, suffix): + if string.endswith(suffix): + return string[:-len(suffix)] + else: + return string diff --git a/tiles/N3-11a.svg b/tiles/N3-11a.svg new file mode 100644 index 00000000..3195b983 --- /dev/null +++ b/tiles/N3-11a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-12.svg b/tiles/N3-12.svg new file mode 100644 index 00000000..666f7e7f --- /dev/null +++ b/tiles/N3-12.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-16a.svg b/tiles/N3-16a.svg new file mode 100644 index 00000000..844ad5a1 --- /dev/null +++ b/tiles/N3-16a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-17.svg b/tiles/N3-17.svg new file mode 100644 index 00000000..26447e8b --- /dev/null +++ b/tiles/N3-17.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-18-modified.svg b/tiles/N3-18-modified.svg new file mode 100644 index 00000000..5e65e625 --- /dev/null +++ b/tiles/N3-18-modified.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-18.svg b/tiles/N3-18.svg new file mode 100644 index 00000000..07993c7b --- /dev/null +++ b/tiles/N3-18.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-20.svg b/tiles/N3-20.svg new file mode 100644 index 00000000..8995a922 --- /dev/null +++ b/tiles/N3-20.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-21.svg b/tiles/N3-21.svg new file mode 100644 index 00000000..61f3b5da --- /dev/null +++ b/tiles/N3-21.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-23b.svg b/tiles/N3-23b.svg new file mode 100644 index 00000000..c687badc --- /dev/null +++ b/tiles/N3-23b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-25c.svg b/tiles/N3-25c.svg new file mode 100644 index 00000000..c6eea00c --- /dev/null +++ b/tiles/N3-25c.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-26b.svg b/tiles/N3-26b.svg new file mode 100644 index 00000000..ed9b254e --- /dev/null +++ b/tiles/N3-26b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-27.svg b/tiles/N3-27.svg new file mode 100644 index 00000000..1780cfbd --- /dev/null +++ b/tiles/N3-27.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-2a.svg b/tiles/N3-2a.svg new file mode 100644 index 00000000..0abd3299 --- /dev/null +++ b/tiles/N3-2a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-2b.svg b/tiles/N3-2b.svg new file mode 100644 index 00000000..8b6fe4df --- /dev/null +++ b/tiles/N3-2b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-30a.svg b/tiles/N3-30a.svg new file mode 100644 index 00000000..17b886f8 --- /dev/null +++ b/tiles/N3-30a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-4a.svg b/tiles/N3-4a.svg new file mode 100644 index 00000000..b27629ea --- /dev/null +++ b/tiles/N3-4a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-4b.svg b/tiles/N3-4b.svg new file mode 100644 index 00000000..b42ecde9 --- /dev/null +++ b/tiles/N3-4b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-51b.svg b/tiles/N3-51b.svg new file mode 100644 index 00000000..2ec42348 --- /dev/null +++ b/tiles/N3-51b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-57f.svg b/tiles/N3-57f.svg new file mode 100644 index 00000000..96d14616 --- /dev/null +++ b/tiles/N3-57f.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-58b.svg b/tiles/N3-58b.svg new file mode 100644 index 00000000..1acddd23 --- /dev/null +++ b/tiles/N3-58b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-6.svg b/tiles/N3-6.svg new file mode 100644 index 00000000..0c8dc6ee --- /dev/null +++ b/tiles/N3-6.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-7.svg b/tiles/N3-7.svg new file mode 100644 index 00000000..b1a23a82 --- /dev/null +++ b/tiles/N3-7.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-8a-mistake.svg b/tiles/N3-8a-mistake.svg new file mode 100644 index 00000000..562ded37 --- /dev/null +++ b/tiles/N3-8a-mistake.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N3-8a.svg b/tiles/N3-8a.svg new file mode 100644 index 00000000..9c47b82b --- /dev/null +++ b/tiles/N3-8a.svg @@ -0,0 +1,16 @@ + + + + + + + diff --git a/tiles/N3-8b.svg b/tiles/N3-8b.svg new file mode 100644 index 00000000..0e547774 --- /dev/null +++ b/tiles/N3-8b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-13b-awesome.svg b/tiles/N4-13b-awesome.svg new file mode 100644 index 00000000..4dcaeccd --- /dev/null +++ b/tiles/N4-13b-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-13d-awesome.svg b/tiles/N4-13d-awesome.svg new file mode 100644 index 00000000..9dcbfb4f --- /dev/null +++ b/tiles/N4-13d-awesome.svg @@ -0,0 +1,206 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tiles/N4-13e-awesome.svg b/tiles/N4-13e-awesome.svg new file mode 100644 index 00000000..716f3cc7 --- /dev/null +++ b/tiles/N4-13e-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-13f-awesome.svg b/tiles/N4-13f-awesome.svg new file mode 100644 index 00000000..762f602a --- /dev/null +++ b/tiles/N4-13f-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-16a-awesome.svg b/tiles/N4-16a-awesome.svg new file mode 100644 index 00000000..5fdb9c6e --- /dev/null +++ b/tiles/N4-16a-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-19.svg b/tiles/N4-19.svg new file mode 100644 index 00000000..f7abf8c5 --- /dev/null +++ b/tiles/N4-19.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-20.svg b/tiles/N4-20.svg new file mode 100644 index 00000000..d1a87c96 --- /dev/null +++ b/tiles/N4-20.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-21c.svg b/tiles/N4-21c.svg new file mode 100644 index 00000000..47e7885b --- /dev/null +++ b/tiles/N4-21c.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-22-awesome.svg b/tiles/N4-22-awesome.svg new file mode 100644 index 00000000..275f5f69 --- /dev/null +++ b/tiles/N4-22-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-23a.svg b/tiles/N4-23a.svg new file mode 100644 index 00000000..5637fec3 --- /dev/null +++ b/tiles/N4-23a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-23c.svg b/tiles/N4-23c.svg new file mode 100644 index 00000000..bfd2d96f --- /dev/null +++ b/tiles/N4-23c.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-27.svg b/tiles/N4-27.svg new file mode 100644 index 00000000..dd341fc3 --- /dev/null +++ b/tiles/N4-27.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-29e.svg b/tiles/N4-29e.svg new file mode 100644 index 00000000..62991ed2 --- /dev/null +++ b/tiles/N4-29e.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-29f.svg b/tiles/N4-29f.svg new file mode 100644 index 00000000..a864da67 --- /dev/null +++ b/tiles/N4-29f.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-31-awesome.svg b/tiles/N4-31-awesome.svg new file mode 100644 index 00000000..62a377d3 --- /dev/null +++ b/tiles/N4-31-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-38.svg b/tiles/N4-38.svg new file mode 100644 index 00000000..92655513 --- /dev/null +++ b/tiles/N4-38.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-42e.svg b/tiles/N4-42e.svg new file mode 100644 index 00000000..c8e76ee6 --- /dev/null +++ b/tiles/N4-42e.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-44.svg b/tiles/N4-44.svg new file mode 100644 index 00000000..1d93d1fe --- /dev/null +++ b/tiles/N4-44.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-52.svg b/tiles/N4-52.svg new file mode 100644 index 00000000..1b6554fe --- /dev/null +++ b/tiles/N4-52.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-54d.svg b/tiles/N4-54d.svg new file mode 100644 index 00000000..0cb4f6d6 --- /dev/null +++ b/tiles/N4-54d.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-5a-2.svg b/tiles/N4-5a-2.svg new file mode 100644 index 00000000..328781bf --- /dev/null +++ b/tiles/N4-5a-2.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-5a.svg b/tiles/N4-5a.svg new file mode 100644 index 00000000..c905d788 --- /dev/null +++ b/tiles/N4-5a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-82.svg b/tiles/N4-82.svg new file mode 100644 index 00000000..e9787c67 --- /dev/null +++ b/tiles/N4-82.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N4-85d.svg b/tiles/N4-85d.svg new file mode 100644 index 00000000..322d5096 --- /dev/null +++ b/tiles/N4-85d.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N5-1e1.svg b/tiles/N5-1e1.svg new file mode 100644 index 00000000..c03d39d7 --- /dev/null +++ b/tiles/N5-1e1.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N5-1q2-awesome.svg b/tiles/N5-1q2-awesome.svg new file mode 100644 index 00000000..7f482bdd --- /dev/null +++ b/tiles/N5-1q2-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N5-1t.svg b/tiles/N5-1t.svg new file mode 100644 index 00000000..8608ab26 --- /dev/null +++ b/tiles/N5-1t.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N6-2.svg b/tiles/N6-2.svg new file mode 100644 index 00000000..06e0439b --- /dev/null +++ b/tiles/N6-2.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N6-5b.svg b/tiles/N6-5b.svg new file mode 100644 index 00000000..c53d4a4a --- /dev/null +++ b/tiles/N6-5b.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N6-6a.svg b/tiles/N6-6a.svg new file mode 100644 index 00000000..8f0f9abb --- /dev/null +++ b/tiles/N6-6a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/N6-6c.svg b/tiles/N6-6c.svg new file mode 100644 index 00000000..55212b16 --- /dev/null +++ b/tiles/N6-6c.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/NC5-11a.svg b/tiles/NC5-11a.svg new file mode 100644 index 00000000..c8f73251 --- /dev/null +++ b/tiles/NC5-11a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/NC5-20a.svg b/tiles/NC5-20a.svg new file mode 100644 index 00000000..be8fd672 --- /dev/null +++ b/tiles/NC5-20a.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P3-1.svg b/tiles/P3-1.svg new file mode 100644 index 00000000..8e452a96 --- /dev/null +++ b/tiles/P3-1.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P3-12.svg b/tiles/P3-12.svg new file mode 100644 index 00000000..f51e0bb0 --- /dev/null +++ b/tiles/P3-12.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-1.svg b/tiles/P4-1.svg new file mode 100644 index 00000000..74a6ce1f --- /dev/null +++ b/tiles/P4-1.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-10.svg b/tiles/P4-10.svg new file mode 100644 index 00000000..5b12947c --- /dev/null +++ b/tiles/P4-10.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-15.svg b/tiles/P4-15.svg new file mode 100644 index 00000000..ae550133 --- /dev/null +++ b/tiles/P4-15.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-19.svg b/tiles/P4-19.svg new file mode 100644 index 00000000..2dc65480 --- /dev/null +++ b/tiles/P4-19.svg @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + + + diff --git a/tiles/P4-23.svg b/tiles/P4-23.svg new file mode 100644 index 00000000..0eac019b --- /dev/null +++ b/tiles/P4-23.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-24.svg b/tiles/P4-24.svg new file mode 100644 index 00000000..dbe56c31 --- /dev/null +++ b/tiles/P4-24.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-25.svg b/tiles/P4-25.svg new file mode 100644 index 00000000..be56ae99 --- /dev/null +++ b/tiles/P4-25.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-42.svg b/tiles/P4-42.svg new file mode 100644 index 00000000..d5b9ada9 --- /dev/null +++ b/tiles/P4-42.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-43-mod.svg b/tiles/P4-43-mod.svg new file mode 100644 index 00000000..bf67672e --- /dev/null +++ b/tiles/P4-43-mod.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-43.svg b/tiles/P4-43.svg new file mode 100644 index 00000000..d7b34c29 --- /dev/null +++ b/tiles/P4-43.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P4-47.svg b/tiles/P4-47.svg new file mode 100644 index 00000000..19074686 --- /dev/null +++ b/tiles/P4-47.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P5-10_11-awesome.svg b/tiles/P5-10_11-awesome.svg new file mode 100644 index 00000000..d6873899 --- /dev/null +++ b/tiles/P5-10_11-awesome.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P5-19.svg b/tiles/P5-19.svg new file mode 100644 index 00000000..d6711f38 --- /dev/null +++ b/tiles/P5-19.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P5-23_24.svg b/tiles/P5-23_24.svg new file mode 100644 index 00000000..9281ef1f --- /dev/null +++ b/tiles/P5-23_24.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P5-4.svg b/tiles/P5-4.svg new file mode 100644 index 00000000..0c36e998 --- /dev/null +++ b/tiles/P5-4.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/P6-6_11.svg b/tiles/P6-6_11.svg new file mode 100644 index 00000000..ab713c2e --- /dev/null +++ b/tiles/P6-6_11.svg @@ -0,0 +1,14 @@ + + + + + diff --git a/tiles/hex_N6-1.svg b/tiles/hex_N6-1.svg new file mode 100644 index 00000000..072a2488 --- /dev/null +++ b/tiles/hex_N6-1.svg @@ -0,0 +1,60 @@ + + + + + + + + + diff --git a/tiles/tile_test4.svg b/tiles/tile_test4.svg new file mode 100644 index 00000000..c73cfa55 --- /dev/null +++ b/tiles/tile_test4.svg @@ -0,0 +1,58 @@ + + + + + + + + + diff --git a/tiles/weird_one.svg b/tiles/weird_one.svg new file mode 100644 index 00000000..347a43fe --- /dev/null +++ b/tiles/weird_one.svg @@ -0,0 +1,126 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3 From 338c1c7bbc893afdcc7ef1d1cc88c66789b9aa4c Mon Sep 17 00:00:00 2001 From: Kaalleen Date: Fri, 20 Jan 2023 17:28:13 +0100 Subject: fix tile names --- lib/tiles.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tiles.py b/lib/tiles.py index 2bef7a19..17002ffa 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -19,7 +19,7 @@ class Tile: def _load_tile(self, tile_path): self.tile_svg = inkex.load_svg(tile_path) self.tile_path = tile_path - self.name = self._get_name(self.tile_svg, tile_path) + self.name = self._get_name(tile_path) self.tile = None self.width = None self.height = None @@ -32,8 +32,8 @@ class Tile: __str__ = __repr__ - def _get_name(self, tile_svg, tile_path): - return os.path.splitext(os.path.basename(tile_path)[0]) + def _get_name(self, tile_path): + return os.path.splitext(os.path.basename(tile_path))[0] def _load(self): self._load_paths(self.tile_svg) -- cgit v1.2.3 From 7de9b69cbc91a31ab0f3d71ac3df71f26292bf7b Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Jan 2023 21:29:01 -0500 Subject: let user finish typing before simulating --- lib/extensions/params.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/extensions/params.py b/lib/extensions/params.py index a34aeeae..f0cd1405 100644 --- a/lib/extensions/params.py +++ b/lib/extensions/params.py @@ -52,6 +52,7 @@ class ParamsTab(ScrolledPanel): self.dict_of_choices = {} self.paired_tab = None self.disable_notify_pair = False + self.change_notify_timer = None toggles = [param for param in self.params if param.type == 'toggle'] @@ -213,8 +214,6 @@ class ParamsTab(ScrolledPanel): self.enable_change_indicator('random_seed') event.Skip() - if self.on_change_hook: - self.on_change_hook(self) def apply(self): values = self.get_values() @@ -234,7 +233,10 @@ class ParamsTab(ScrolledPanel): event.Skip() if self.on_change_hook: - self.on_change_hook(self) + if self.change_notify_timer is None or self.change_notify_timer.HasRun(): + self.change_notify_timer = wx.CallLater(1000, self.on_change_hook, self) + else: + self.change_notify_timer.Start() def load_preset(self, preset): preset_data = preset.get(self.name, {}) -- cgit v1.2.3 From dde09ac938c4d111f6a3c11be5414383b2373bc5 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Jan 2023 21:29:24 -0500 Subject: resize a bunch of tiles --- tiles/N3-11a.svg | 116 +- tiles/N3-12.svg | 108 +- tiles/N3-16a.svg | 108 +- tiles/N3-17.svg | 80 +- tiles/N3-18-modified.svg | 128 +- tiles/N3-18.svg | 128 +- tiles/N3-20.svg | 136 +- tiles/N3-21.svg | 188 +- tiles/N3-23b.svg | 140 +- tiles/N3-25c.svg | 140 +- tiles/N3-26b.svg | 144 +- tiles/N3-27.svg | 236 +- tiles/N3-2a.svg | 128 +- tiles/N3-2b.svg | 128 +- tiles/N3-30a.svg | 204 +- tiles/N3-4a.svg | 72 +- tiles/N3-4b.svg | 76 +- tiles/N3-51b.svg | 268 +- tiles/N3-57f.svg | 244 +- tiles/N3-58b.svg | 188 +- tiles/N3-6.svg | 88 +- tiles/N3-7.svg | 108 +- tiles/N3-8a-mistake.svg | 64 +- tiles/N3-8a.svg | 80 +- tiles/N3-8b.svg | 108 +- tiles/N4-13b-awesome.svg | 136 +- tiles/N4-13c-awesome.svg | 172 + tiles/N4-13d-awesome.svg | 175 +- tiles/N4-13e-awesome.svg | 160 +- tiles/N4-13f-awesome.svg | 140 +- tiles/N4-16a-awesome.svg | 176 +- tiles/N4-19.svg | 156 +- tiles/N4-20.svg | 204 +- tiles/N4-21c.svg | 140 +- tiles/N4-22-awesome.svg | 148 +- tiles/N4-23a.svg | 212 +- tiles/N4-23c.svg | 148 +- tiles/N4-27.svg | 176 +- tiles/N4-29e.svg | 120 +- tiles/N4-29f.svg | 148 +- tiles/N4-31-awesome.svg | 104 +- tiles/N4-38.svg | 224 +- tiles/N4-42e.svg | 124 +- tiles/N4-44.svg | 164 +- tiles/N4-52.svg | 164 +- tiles/N4-54d.svg | 160 +- tiles/N4-5a-2.svg | 100 +- tiles/N4-5a.svg | 144 +- tiles/N4-82.svg | 128 +- tiles/N4-85d.svg | 180 +- tiles/N5-1e1.svg | 168 +- tiles/N5-1q2-awesome.svg | 104 +- tiles/N5-1t.svg | 96 +- tiles/N6-2.svg | 172 +- tiles/N6-5b.svg | 224 +- tiles/N6-6a.svg | 224 +- tiles/N6-6c.svg | 328 +- tiles/NC5-11a.svg | 124 +- tiles/NC5-20a.svg | 108 +- tiles/P3-1.svg | 88 +- tiles/P3-12.svg | 96 +- tiles/P4-1.svg | 92 +- tiles/P4-10.svg | 136 +- tiles/P4-15.svg | 144 +- tiles/P4-19.svg | 53 +- tiles/P4-23.svg | 140 +- tiles/P4-24.svg | 140 +- tiles/P4-25.svg | 140 +- tiles/P4-42.svg | 96 +- tiles/P4-43-mod.svg | 104 +- tiles/P4-43.svg | 76 +- tiles/P4-47.svg | 88 +- tiles/P5-10_11-awesome.svg | 100 +- tiles/P5-19.svg | 108 +- tiles/P5-23_24.svg | 92 +- tiles/P5-4.svg | 88 +- tiles/P6-6_11.svg | 96 +- tiles/diamond_square.svg | 57 +- tiles/hex_N6-1.svg | 22 +- tiles/hexagon.svg | 79 +- tiles/log | 36084 +++++++++++++++++++++++++++++++++++++++++++ tiles/tile_test4.svg | 22 +- tiles/weird_one.svg | 90 +- 83 files changed, 46474 insertions(+), 616 deletions(-) create mode 100644 tiles/N4-13c-awesome.svg create mode 100644 tiles/log diff --git a/tiles/N3-11a.svg b/tiles/N3-11a.svg index 3195b983..efe8565f 100644 --- a/tiles/N3-11a.svg +++ b/tiles/N3-11a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-12.svg b/tiles/N3-12.svg index 666f7e7f..b465a219 100644 --- a/tiles/N3-12.svg +++ b/tiles/N3-12.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-16a.svg b/tiles/N3-16a.svg index 844ad5a1..16842bc7 100644 --- a/tiles/N3-16a.svg +++ b/tiles/N3-16a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-17.svg b/tiles/N3-17.svg index 26447e8b..1150875b 100644 --- a/tiles/N3-17.svg +++ b/tiles/N3-17.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-18-modified.svg b/tiles/N3-18-modified.svg index 5e65e625..6bf917d7 100644 --- a/tiles/N3-18-modified.svg +++ b/tiles/N3-18-modified.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-18.svg b/tiles/N3-18.svg index 07993c7b..cb34f88b 100644 --- a/tiles/N3-18.svg +++ b/tiles/N3-18.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-20.svg b/tiles/N3-20.svg index 8995a922..ee4b0476 100644 --- a/tiles/N3-20.svg +++ b/tiles/N3-20.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-21.svg b/tiles/N3-21.svg index 61f3b5da..338155d9 100644 --- a/tiles/N3-21.svg +++ b/tiles/N3-21.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-23b.svg b/tiles/N3-23b.svg index c687badc..3b718cef 100644 --- a/tiles/N3-23b.svg +++ b/tiles/N3-23b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-25c.svg b/tiles/N3-25c.svg index c6eea00c..0b2c3cb9 100644 --- a/tiles/N3-25c.svg +++ b/tiles/N3-25c.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-26b.svg b/tiles/N3-26b.svg index ed9b254e..e7b9ef2d 100644 --- a/tiles/N3-26b.svg +++ b/tiles/N3-26b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-27.svg b/tiles/N3-27.svg index 1780cfbd..b4a2ddca 100644 --- a/tiles/N3-27.svg +++ b/tiles/N3-27.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-2a.svg b/tiles/N3-2a.svg index 0abd3299..c35b17ac 100644 --- a/tiles/N3-2a.svg +++ b/tiles/N3-2a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-2b.svg b/tiles/N3-2b.svg index 8b6fe4df..f1534ffc 100644 --- a/tiles/N3-2b.svg +++ b/tiles/N3-2b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-30a.svg b/tiles/N3-30a.svg index 17b886f8..3c351ae2 100644 --- a/tiles/N3-30a.svg +++ b/tiles/N3-30a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-4a.svg b/tiles/N3-4a.svg index b27629ea..4c9b3f76 100644 --- a/tiles/N3-4a.svg +++ b/tiles/N3-4a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-4b.svg b/tiles/N3-4b.svg index b42ecde9..e17c1ce6 100644 --- a/tiles/N3-4b.svg +++ b/tiles/N3-4b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-51b.svg b/tiles/N3-51b.svg index 2ec42348..8fa11907 100644 --- a/tiles/N3-51b.svg +++ b/tiles/N3-51b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-57f.svg b/tiles/N3-57f.svg index 96d14616..ffae3638 100644 --- a/tiles/N3-57f.svg +++ b/tiles/N3-57f.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-58b.svg b/tiles/N3-58b.svg index 1acddd23..619d9f48 100644 --- a/tiles/N3-58b.svg +++ b/tiles/N3-58b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-6.svg b/tiles/N3-6.svg index 0c8dc6ee..920d8dd0 100644 --- a/tiles/N3-6.svg +++ b/tiles/N3-6.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-7.svg b/tiles/N3-7.svg index b1a23a82..bcf88862 100644 --- a/tiles/N3-7.svg +++ b/tiles/N3-7.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-8a-mistake.svg b/tiles/N3-8a-mistake.svg index 562ded37..c7e61010 100644 --- a/tiles/N3-8a-mistake.svg +++ b/tiles/N3-8a-mistake.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N3-8a.svg b/tiles/N3-8a.svg index 9c47b82b..1a7e8bf5 100644 --- a/tiles/N3-8a.svg +++ b/tiles/N3-8a.svg @@ -1,7 +1,35 @@ - - - - diff --git a/tiles/N3-8b.svg b/tiles/N3-8b.svg index 0e547774..32c58996 100644 --- a/tiles/N3-8b.svg +++ b/tiles/N3-8b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-13b-awesome.svg b/tiles/N4-13b-awesome.svg index 4dcaeccd..07416119 100644 --- a/tiles/N4-13b-awesome.svg +++ b/tiles/N4-13b-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-13c-awesome.svg b/tiles/N4-13c-awesome.svg new file mode 100644 index 00000000..92189b54 --- /dev/null +++ b/tiles/N4-13c-awesome.svg @@ -0,0 +1,172 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tiles/N4-13d-awesome.svg b/tiles/N4-13d-awesome.svg index 9dcbfb4f..6f802b11 100644 --- a/tiles/N4-13d-awesome.svg +++ b/tiles/N4-13d-awesome.svg @@ -1,11 +1,11 @@ + points="38.080661,-28.13166 -11.321278,45.971249 -38.080661,28.13166 11.321278,-45.971249 " + style="stroke:none" + id="polygon2206" + transform="matrix(0.4,0,0,0.4,25.13484,25.008707)" /> diff --git a/tiles/N4-13e-awesome.svg b/tiles/N4-13e-awesome.svg index 716f3cc7..80327120 100644 --- a/tiles/N4-13e-awesome.svg +++ b/tiles/N4-13e-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-13f-awesome.svg b/tiles/N4-13f-awesome.svg index 762f602a..781eb6f5 100644 --- a/tiles/N4-13f-awesome.svg +++ b/tiles/N4-13f-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-16a-awesome.svg b/tiles/N4-16a-awesome.svg index 5fdb9c6e..746e99a1 100644 --- a/tiles/N4-16a-awesome.svg +++ b/tiles/N4-16a-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-19.svg b/tiles/N4-19.svg index f7abf8c5..77153e7a 100644 --- a/tiles/N4-19.svg +++ b/tiles/N4-19.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-20.svg b/tiles/N4-20.svg index d1a87c96..19de2031 100644 --- a/tiles/N4-20.svg +++ b/tiles/N4-20.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-21c.svg b/tiles/N4-21c.svg index 47e7885b..5b3d9796 100644 --- a/tiles/N4-21c.svg +++ b/tiles/N4-21c.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-22-awesome.svg b/tiles/N4-22-awesome.svg index 275f5f69..2b09866a 100644 --- a/tiles/N4-22-awesome.svg +++ b/tiles/N4-22-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-23a.svg b/tiles/N4-23a.svg index 5637fec3..f78ea87f 100644 --- a/tiles/N4-23a.svg +++ b/tiles/N4-23a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-23c.svg b/tiles/N4-23c.svg index bfd2d96f..8262c0bd 100644 --- a/tiles/N4-23c.svg +++ b/tiles/N4-23c.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-27.svg b/tiles/N4-27.svg index dd341fc3..76233a12 100644 --- a/tiles/N4-27.svg +++ b/tiles/N4-27.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-29e.svg b/tiles/N4-29e.svg index 62991ed2..d23d4957 100644 --- a/tiles/N4-29e.svg +++ b/tiles/N4-29e.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-29f.svg b/tiles/N4-29f.svg index a864da67..d068df06 100644 --- a/tiles/N4-29f.svg +++ b/tiles/N4-29f.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-31-awesome.svg b/tiles/N4-31-awesome.svg index 62a377d3..aca03765 100644 --- a/tiles/N4-31-awesome.svg +++ b/tiles/N4-31-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-38.svg b/tiles/N4-38.svg index 92655513..1f43744c 100644 --- a/tiles/N4-38.svg +++ b/tiles/N4-38.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-42e.svg b/tiles/N4-42e.svg index c8e76ee6..7370465e 100644 --- a/tiles/N4-42e.svg +++ b/tiles/N4-42e.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-44.svg b/tiles/N4-44.svg index 1d93d1fe..19fbdd90 100644 --- a/tiles/N4-44.svg +++ b/tiles/N4-44.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-52.svg b/tiles/N4-52.svg index 1b6554fe..5b6b5de7 100644 --- a/tiles/N4-52.svg +++ b/tiles/N4-52.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-54d.svg b/tiles/N4-54d.svg index 0cb4f6d6..bcbddced 100644 --- a/tiles/N4-54d.svg +++ b/tiles/N4-54d.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-5a-2.svg b/tiles/N4-5a-2.svg index 328781bf..2dcd0670 100644 --- a/tiles/N4-5a-2.svg +++ b/tiles/N4-5a-2.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-5a.svg b/tiles/N4-5a.svg index c905d788..6b4a05fd 100644 --- a/tiles/N4-5a.svg +++ b/tiles/N4-5a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-82.svg b/tiles/N4-82.svg index e9787c67..40a28633 100644 --- a/tiles/N4-82.svg +++ b/tiles/N4-82.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N4-85d.svg b/tiles/N4-85d.svg index 322d5096..cc5a3c46 100644 --- a/tiles/N4-85d.svg +++ b/tiles/N4-85d.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N5-1e1.svg b/tiles/N5-1e1.svg index c03d39d7..77983cdd 100644 --- a/tiles/N5-1e1.svg +++ b/tiles/N5-1e1.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N5-1q2-awesome.svg b/tiles/N5-1q2-awesome.svg index 7f482bdd..fbc965d5 100644 --- a/tiles/N5-1q2-awesome.svg +++ b/tiles/N5-1q2-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N5-1t.svg b/tiles/N5-1t.svg index 8608ab26..c46c81d4 100644 --- a/tiles/N5-1t.svg +++ b/tiles/N5-1t.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N6-2.svg b/tiles/N6-2.svg index 06e0439b..9644cba9 100644 --- a/tiles/N6-2.svg +++ b/tiles/N6-2.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N6-5b.svg b/tiles/N6-5b.svg index c53d4a4a..ebb82c10 100644 --- a/tiles/N6-5b.svg +++ b/tiles/N6-5b.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N6-6a.svg b/tiles/N6-6a.svg index 8f0f9abb..a0313af3 100644 --- a/tiles/N6-6a.svg +++ b/tiles/N6-6a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/N6-6c.svg b/tiles/N6-6c.svg index 55212b16..1b3e5f5d 100644 --- a/tiles/N6-6c.svg +++ b/tiles/N6-6c.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/NC5-11a.svg b/tiles/NC5-11a.svg index c8f73251..6101e541 100644 --- a/tiles/NC5-11a.svg +++ b/tiles/NC5-11a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/NC5-20a.svg b/tiles/NC5-20a.svg index be8fd672..54bb2494 100644 --- a/tiles/NC5-20a.svg +++ b/tiles/NC5-20a.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P3-1.svg b/tiles/P3-1.svg index 8e452a96..e37f0d2f 100644 --- a/tiles/P3-1.svg +++ b/tiles/P3-1.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P3-12.svg b/tiles/P3-12.svg index f51e0bb0..ca10f4c1 100644 --- a/tiles/P3-12.svg +++ b/tiles/P3-12.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-1.svg b/tiles/P4-1.svg index 74a6ce1f..96821f5e 100644 --- a/tiles/P4-1.svg +++ b/tiles/P4-1.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-10.svg b/tiles/P4-10.svg index 5b12947c..f2341709 100644 --- a/tiles/P4-10.svg +++ b/tiles/P4-10.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-15.svg b/tiles/P4-15.svg index ae550133..f5a0e2eb 100644 --- a/tiles/P4-15.svg +++ b/tiles/P4-15.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-19.svg b/tiles/P4-19.svg index 2dc65480..242b7ce5 100644 --- a/tiles/P4-19.svg +++ b/tiles/P4-19.svg @@ -1,8 +1,8 @@ + points="37.227389,78.182165 48.128127,93.750033 99.049371,58.094594 88.148632,42.526727 " + style="stroke:none" + id="polygon3836" + transform="matrix(0.4,0,0,0.4,-14.890956,-17.010691)" /> diff --git a/tiles/P4-23.svg b/tiles/P4-23.svg index 0eac019b..4c89e0f9 100644 --- a/tiles/P4-23.svg +++ b/tiles/P4-23.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-24.svg b/tiles/P4-24.svg index dbe56c31..57c134dc 100644 --- a/tiles/P4-24.svg +++ b/tiles/P4-24.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-25.svg b/tiles/P4-25.svg index be56ae99..78269df9 100644 --- a/tiles/P4-25.svg +++ b/tiles/P4-25.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-42.svg b/tiles/P4-42.svg index d5b9ada9..ca2331a9 100644 --- a/tiles/P4-42.svg +++ b/tiles/P4-42.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-43-mod.svg b/tiles/P4-43-mod.svg index bf67672e..7ac5e6d9 100644 --- a/tiles/P4-43-mod.svg +++ b/tiles/P4-43-mod.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-43.svg b/tiles/P4-43.svg index d7b34c29..df830748 100644 --- a/tiles/P4-43.svg +++ b/tiles/P4-43.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P4-47.svg b/tiles/P4-47.svg index 19074686..eacc473d 100644 --- a/tiles/P4-47.svg +++ b/tiles/P4-47.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P5-10_11-awesome.svg b/tiles/P5-10_11-awesome.svg index d6873899..8d3820dc 100644 --- a/tiles/P5-10_11-awesome.svg +++ b/tiles/P5-10_11-awesome.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P5-19.svg b/tiles/P5-19.svg index d6711f38..8d975f59 100644 --- a/tiles/P5-19.svg +++ b/tiles/P5-19.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P5-23_24.svg b/tiles/P5-23_24.svg index 9281ef1f..3577ac05 100644 --- a/tiles/P5-23_24.svg +++ b/tiles/P5-23_24.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P5-4.svg b/tiles/P5-4.svg index 0c36e998..edac1b6a 100644 --- a/tiles/P5-4.svg +++ b/tiles/P5-4.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/P6-6_11.svg b/tiles/P6-6_11.svg index ab713c2e..9617323b 100644 --- a/tiles/P6-6_11.svg +++ b/tiles/P6-6_11.svg @@ -1,5 +1,29 @@ - - diff --git a/tiles/diamond_square.svg b/tiles/diamond_square.svg index aea71d3a..df6c05bb 100644 --- a/tiles/diamond_square.svg +++ b/tiles/diamond_square.svg @@ -2,9 +2,9 @@ + id="layer1" + transform="translate(-16.731287,-16.731287)"> diff --git a/tiles/hex_N6-1.svg b/tiles/hex_N6-1.svg index 072a2488..5dd93a68 100644 --- a/tiles/hex_N6-1.svg +++ b/tiles/hex_N6-1.svg @@ -1,8 +1,8 @@ + cx="7.7424483" + cy="27.313602" + r="7.5424485" /> diff --git a/tiles/hexagon.svg b/tiles/hexagon.svg index ec6faf13..56158ced 100644 --- a/tiles/hexagon.svg +++ b/tiles/hexagon.svg @@ -2,9 +2,9 @@ + transform="translate(-1.3803519,6.520392)"> + + style="display:inline;vector-effect:none;fill:none;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.207664" + d="m 1.4977239,16.984969 3.7795274,6.546142" + id="path445" + sodipodi:nodetypes="cc" /> + cx="5.2598796" + cy="-2.6408644" + r="3.7795277" /> diff --git a/tiles/log b/tiles/log new file mode 100644 index 00000000..92b81bb1 --- /dev/null +++ b/tiles/log @@ -0,0 +1,36084 @@ +diamond_square.svg +hexagon.svg +hex_N6-1.svg +N3-11a.svg +diamond_square.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.064: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.069: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.073: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.075: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.077: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.080: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.082: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.084: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.086: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.092: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.123: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +hexagon.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.403: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.408: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.412: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.414: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.417: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.439: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.465: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.528: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.528: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.543: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.543: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +hex_N6-1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.748: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.754: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.758: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.760: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.762: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.765: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.767: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.774: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.776: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.807: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-11a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.079: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.084: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.088: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.091: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.102: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.104: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.138: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.204: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-12.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.432: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.438: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.446: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.448: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.451: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.453: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.455: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.460: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.492: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-16a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.774: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.780: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.784: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.786: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.791: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.793: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.795: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.800: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.834: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.898: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-17.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.118: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.123: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.129: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.132: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.134: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.136: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.139: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.141: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.146: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.179: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.258: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.258: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.258: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.260: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-18-modified.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.457: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.462: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.466: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.473: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.485: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.517: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-18.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.799: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.805: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.811: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.815: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.818: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.820: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.822: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.825: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.827: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.858: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-20.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.137: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.142: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.148: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.150: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.153: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.155: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.157: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.159: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.162: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.164: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.198: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-21.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.487: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.493: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.497: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.500: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.502: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.505: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.507: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.509: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.511: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.514: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.547: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.625: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-23b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.829: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.834: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.838: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.840: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.843: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.845: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.847: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.852: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.854: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.856: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.887: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.950: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-25c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.160: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.165: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.169: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.171: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.174: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.176: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.178: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.181: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.183: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.185: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.219: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-26b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.497: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.503: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.506: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.509: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.511: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.513: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.518: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.520: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.523: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.525: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.556: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-27.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.829: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.835: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.839: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.841: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.844: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.846: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.848: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.853: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.888: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-2a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.177: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.182: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.186: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.191: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.194: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.196: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.201: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.203: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.205: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.236: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.300: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.300: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.314: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.314: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-2b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.505: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.510: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.514: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.519: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.521: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.523: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.526: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.528: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.530: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.532: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.563: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-30a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.842: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.847: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.851: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.853: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.858: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.862: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.865: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.867: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.869: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.900: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.964: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.964: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.964: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.980: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-4a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.173: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.178: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.182: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.184: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.186: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.189: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.191: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.231: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-4b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.504: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.509: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.513: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.515: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.518: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.520: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.524: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.527: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.529: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.531: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.562: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-51b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.830: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.835: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.839: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.841: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.844: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.846: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.848: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.853: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.889: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-57f.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.178: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.183: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.187: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.189: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.192: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.194: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.196: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.201: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.203: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.206: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.237: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-58b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.524: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.529: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.533: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.535: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.538: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.540: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.545: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.548: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.550: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.552: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.555: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.585: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-6.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.856: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.861: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.865: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.867: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.870: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.872: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.874: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.877: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.879: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.881: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.883: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.914: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.977: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.977: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-7.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.184: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.189: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.204: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.207: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.209: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.212: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.243: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.323: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.323: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-8a-mistake.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.524: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.529: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.533: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.535: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.538: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.540: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.542: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.544: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.547: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.549: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.551: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.582: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-8a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.851: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.856: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.863: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.865: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.868: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.870: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.872: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.875: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.877: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.879: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.910: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-8b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.176: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.182: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.186: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.190: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.197: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.204: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.238: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13b-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.513: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.518: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.525: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.528: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.530: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.532: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.535: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.537: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.540: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.542: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.574: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13c-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.848: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.853: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.862: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.864: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.867: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.869: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.871: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.873: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.876: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.907: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13d-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.192: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.197: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.201: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.203: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.205: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.208: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.210: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.212: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.215: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.217: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.219: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.251: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13e-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.540: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.545: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.549: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.552: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.554: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.556: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.559: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.561: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.563: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.566: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.568: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.599: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13f-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.882: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.887: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.891: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.893: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.896: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.898: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.900: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.903: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.905: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.907: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.910: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.914: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.914: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.915: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.915: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.915: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.940: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-16a-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.233: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.238: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.242: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.244: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.248: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.252: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.256: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.259: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.263: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.268: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.272: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.312: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-19.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.620: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.625: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.629: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.632: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.636: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.638: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.640: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.643: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.645: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.647: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.650: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.682: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-20.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.960: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.965: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.969: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.971: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.974: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.976: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.978: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.981: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.983: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.985: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.988: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.992: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.019: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.082: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.082: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.097: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.097: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-21c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.318: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.323: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.327: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.329: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.332: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.334: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.336: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.339: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.341: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.343: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.346: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.383: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-22-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.702: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.707: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.711: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.713: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.716: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.718: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.720: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.725: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.727: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.729: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.764: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.845: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-23a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.054: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.059: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.063: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.065: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.068: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.070: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.072: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.075: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.077: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.079: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.081: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.112: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.175: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.175: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.190: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.190: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.192: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.192: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.192: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-23c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.401: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.406: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.410: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.412: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.415: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.417: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.428: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.459: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-27.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.736: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.741: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.745: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.747: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.750: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.752: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.754: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.757: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.759: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.762: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.795: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-29e.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.080: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.085: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.091: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.094: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.096: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.101: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.112: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.112: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.112: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.113: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.113: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.139: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-29f.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.415: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.421: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.425: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.427: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.437: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.439: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.446: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.477: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.537: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-31-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.745: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.750: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.754: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.757: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.759: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.761: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.804: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.868: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.868: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.868: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-38.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.072: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.077: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.081: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.084: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.086: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.088: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.091: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.097: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.131: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.209: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.209: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.209: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.211: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-42e.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.410: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.415: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.423: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.428: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.430: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.437: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.468: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-44.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.755: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.760: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.782: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.813: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.881: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.881: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-52.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.089: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.094: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.110: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.112: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.114: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.117: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.148: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-54d.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.433: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.438: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.449: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.451: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.456: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.461: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.465: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.492: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-5a-2.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.759: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.764: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.779: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.782: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.784: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.786: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.817: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-5a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.093: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.098: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.102: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.109: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.112: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.114: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.116: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.118: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.121: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.152: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-82.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.432: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.437: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.441: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.443: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.445: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.448: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.450: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.452: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.455: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.457: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.459: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.490: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-85d.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.764: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.770: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.774: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.776: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.781: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.785: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.788: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.790: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.792: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.823: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N5-1e1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.099: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.104: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.108: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.110: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.113: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.115: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.117: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.120: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.122: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.124: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.157: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N5-1q2-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.422: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.427: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.433: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.440: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.449: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.480: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.543: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.543: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N5-1t.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.755: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.760: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.776: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.813: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-2.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.076: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.081: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.085: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.087: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.092: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.094: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.096: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.101: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.134: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-5b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.438: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.443: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.449: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.452: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.456: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.461: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.463: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.465: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.497: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-6a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.789: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.794: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.800: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.805: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.807: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.812: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.814: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.848: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-6c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.129: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.134: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.150: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.152: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.188: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +NC5-11a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.469: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.474: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.485: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.487: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.490: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.492: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.494: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.497: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.527: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.605: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +NC5-20a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.798: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.804: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.808: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.810: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.812: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.815: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.817: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.819: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.822: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.824: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.826: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.857: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P3-12.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.126: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.132: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.152: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.185: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P3-1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.462: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.467: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.481: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.486: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.488: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.490: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.522: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.586: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.586: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.586: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.602: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-10.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.785: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.790: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.799: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.801: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.804: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.806: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.808: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.810: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.845: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-15.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.126: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.131: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.137: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.144: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.151: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.158: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.185: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.248: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-19.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.457: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.463: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.466: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.485: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.516: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.806: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.811: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.815: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.817: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.820: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.822: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.824: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.827: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.829: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.831: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.834: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.865: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-23.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.129: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.134: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.152: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.187: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.251: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.251: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.267: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-24.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.460: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.465: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.481: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.484: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.486: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.488: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.491: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.522: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.596: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-25.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.793: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.798: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.804: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.806: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.814: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.819: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.821: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.823: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.855: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-42.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.118: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.123: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.129: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.132: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.134: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.136: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.141: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.176: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-43-mod.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.444: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.449: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.453: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.455: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.460: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.463: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.465: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.467: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.472: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.503: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.567: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-43.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.760: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.766: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.774: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.779: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.781: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.786: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.788: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.819: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-47.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.105: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.110: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.114: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.116: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.119: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.121: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.123: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.126: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.128: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.130: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.133: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.164: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-10_11-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.427: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.432: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.436: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.441: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.443: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.445: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.450: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.452: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.485: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-19.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.755: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.760: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.782: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.813: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-23_24.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.075: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.081: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.084: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.087: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.092: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.094: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.096: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.101: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.134: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-4.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.415: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.420: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.427: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.434: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.436: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.440: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.443: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.474: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P6-6_11.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.749: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.754: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.758: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.760: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.763: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.765: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.808: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.886: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +tile_test4.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.077: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.082: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.086: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.088: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.090: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.097: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.102: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.104: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.135: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +weird_one.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.406: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.411: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.415: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.417: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.420: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.422: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.425: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.427: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.434: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.465: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.546: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +diamond_square.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.407: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.412: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.416: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.418: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.423: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.425: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.428: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.430: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.466: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.561: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.561: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.575: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.575: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +hexagon.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.777: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.783: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.787: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.791: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.801: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.803: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.805: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.836: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +hex_N6-1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.107: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.112: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.116: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.118: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.121: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.123: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.126: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.128: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.130: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.133: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.166: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-11a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.451: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.456: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.460: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.463: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.465: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.468: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.470: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.472: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.475: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.477: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.479: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.510: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-12.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.788: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.793: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.797: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.799: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.804: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.807: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.811: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.847: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-16a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.130: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.135: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.139: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.144: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.146: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.151: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.158: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.189: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-17.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.468: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.473: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.477: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.482: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.484: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.487: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.489: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.491: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.494: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.496: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.527: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-18-modified.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.802: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.807: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.811: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.818: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.820: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.823: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.825: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.827: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.830: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.860: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.923: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.938: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-18.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.132: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.137: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.141: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.144: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.146: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.148: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.159: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.161: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.163: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.194: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-20.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.493: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.498: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.502: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.504: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.507: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.509: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.512: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.514: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.519: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.554: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-21.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.840: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.846: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.852: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.854: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.859: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.861: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.864: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.866: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.868: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.899: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.962: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.962: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.962: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.979: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-23b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.193: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.198: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.204: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.207: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.209: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.214: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.217: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.219: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.221: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.224: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.263: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-25c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.569: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.574: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.578: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.581: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.583: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.585: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.588: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.590: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.592: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.595: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.597: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.629: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-26b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.910: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.915: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.919: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.921: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.924: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.926: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.929: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.931: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.933: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.935: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.938: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.969: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.032: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.047: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.047: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.049: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.049: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.049: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-27.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.253: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.258: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.262: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.264: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.267: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.269: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.271: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.274: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.276: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.278: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.281: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.314: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.410: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-2a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.611: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.616: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.620: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.622: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.625: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.627: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.629: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.631: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.634: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.636: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.638: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.669: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-2b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.960: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.966: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.970: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.972: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.974: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.977: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.979: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.981: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.984: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.986: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.988: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.019: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-30a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.293: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.298: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.303: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.305: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.307: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.310: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.312: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.315: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.317: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.319: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.322: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.353: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-4a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.633: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.638: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.642: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.644: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.647: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.649: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.651: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.653: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.656: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.658: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.660: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.691: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-4b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.979: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.984: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.988: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.990: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.993: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.995: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.997: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.000: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.002: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.004: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.007: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.038: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.118: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-51b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.312: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.317: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.321: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.323: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.327: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.330: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.333: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.335: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.337: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.340: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.342: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.373: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-57f.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.667: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.672: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.676: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.678: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.681: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.683: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.685: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.688: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.690: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.692: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.695: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.699: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.699: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.700: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.700: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.700: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.726: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-58b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.007: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.012: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.016: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.018: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.020: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.023: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.025: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.027: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.030: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.032: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.034: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.065: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.128: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.128: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.143: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-6.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.335: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.340: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.346: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.348: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.351: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.353: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.355: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.358: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.360: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.362: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.364: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.395: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-7.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.714: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.719: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.725: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.728: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.730: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.732: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.734: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.737: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.739: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.741: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.772: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-8a-mistake.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.036: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.041: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.045: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.050: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.052: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.057: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.063: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.095: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-8a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.363: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.369: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.373: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.375: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.378: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.380: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.382: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.384: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.387: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.389: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.391: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.422: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.486: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.486: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.503: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.503: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N3-8b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.692: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.697: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.701: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.703: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.706: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.712: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.717: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.719: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.750: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.815: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.815: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.815: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13b-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.012: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.017: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.021: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.023: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.026: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.028: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.030: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.033: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.035: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.037: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.040: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.071: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13c-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.360: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.365: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.369: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.371: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.374: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.376: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.379: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.383: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.386: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.388: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.419: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.483: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.483: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.483: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.498: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.498: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13d-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.696: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.701: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.705: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.712: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.717: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.719: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.722: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.724: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.755: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.820: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.820: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13e-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.035: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.041: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.045: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.049: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.052: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.056: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.063: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.095: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-13f-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.364: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.369: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.373: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.376: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.378: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.383: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.385: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.387: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.390: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.392: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.423: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-16a-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.704: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.709: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.713: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.718: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.720: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.722: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.724: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.727: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.729: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.731: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.762: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-19.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.050: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.055: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.064: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.066: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.068: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.071: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.073: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.075: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.078: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.082: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.082: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.083: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.083: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.083: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.108: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.186: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-20.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.410: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.415: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.433: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.470: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-21c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.742: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.748: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.752: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.754: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.756: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.759: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.761: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.763: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.801: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.881: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-22-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.084: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.089: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.110: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.112: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.143: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-23a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.412: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.417: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.433: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.440: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.471: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-23c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.768: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.773: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.785: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.787: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.792: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.827: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-27.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.108: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.114: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.118: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.120: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.122: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.125: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.129: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.131: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.134: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.136: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.167: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-29e.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.445: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.450: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.456: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.459: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.461: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.467: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.506: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-29f.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.775: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.780: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.785: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.787: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.792: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.801: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.803: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.834: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-31-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.111: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.116: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.120: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.122: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.125: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.133: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.137: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.173: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-38.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.463: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.468: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.472: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.479: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.481: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.486: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.488: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.490: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.522: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.594: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.594: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.594: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.609: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.609: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.609: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.611: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.611: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-42e.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.827: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.832: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.836: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.838: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.841: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.843: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.845: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.848: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.852: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.859: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.859: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.860: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.860: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.860: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.885: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-44.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.162: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.167: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.171: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.174: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.176: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.178: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.181: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.183: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.185: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.190: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.221: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.285: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-52.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.499: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.504: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.508: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.510: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.513: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.515: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.517: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.520: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.524: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.526: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.557: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.637: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-54d.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.833: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.838: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.842: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.844: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.847: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.849: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.851: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.854: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.856: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.858: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.891: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.970: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-5a-2.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.184: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.189: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.205: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.207: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.209: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.212: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.242: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-5a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.520: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.525: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.529: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.532: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.534: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.536: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.539: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.541: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.543: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.546: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.548: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.579: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-82.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.855: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.860: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.864: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.866: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.869: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.871: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.874: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.876: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.878: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.880: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.883: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.914: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N4-85d.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.209: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.214: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.218: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.220: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.222: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.225: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.227: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.229: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.232: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.234: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.236: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.267: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N5-1e1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.535: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.540: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.544: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.546: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.549: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.551: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.553: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.555: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.558: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.560: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.562: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.593: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N5-1q2-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.892: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.898: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.901: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.904: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.906: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.909: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.911: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.913: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.915: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.918: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.920: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.951: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N5-1t.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.274: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.279: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.283: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.285: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.288: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.291: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.293: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.295: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.298: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.300: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.302: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.333: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.414: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-2.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.600: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.605: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.609: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.612: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.614: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.616: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.619: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.621: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.623: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.625: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.628: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.659: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.722: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-5b.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.953: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.958: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.962: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.964: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.967: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.969: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.972: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.974: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.976: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.978: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.981: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.012: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-6a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.299: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.304: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.308: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.311: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.313: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.315: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.318: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.320: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.322: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.324: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.327: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.358: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +N6-6c.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.661: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.666: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.670: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.672: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.675: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.677: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.679: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.682: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.684: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.686: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.689: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.693: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.693: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.693: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.694: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.694: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.720: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +NC5-11a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.017: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.022: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.026: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.028: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.030: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.033: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.035: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.037: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.040: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.042: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.044: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.075: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +NC5-20a.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.341: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.346: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.350: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.352: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.354: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.357: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.359: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.361: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.363: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.366: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.368: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.399: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P3-12.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.668: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.673: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.677: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.679: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.681: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.684: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.686: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.688: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.691: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.693: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.695: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.730: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P3-1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:24.998: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.003: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.007: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.009: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.012: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.014: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.016: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.019: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.021: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.023: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.026: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.057: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.134: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-10.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.324: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.329: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.333: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.335: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.338: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.340: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.342: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.345: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.347: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.349: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.351: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.383: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-15.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.682: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.687: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.691: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.693: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.696: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.698: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.700: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.703: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.705: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.707: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.714: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.714: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.714: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.715: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.715: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.740: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-19.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.029: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.034: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.038: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.040: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.043: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.045: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.050: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.052: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.057: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.061: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.061: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.061: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.062: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.062: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.088: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-1.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.358: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.364: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.368: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.370: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.372: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.375: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.377: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.379: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.384: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.386: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.417: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.481: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-23.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.692: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.697: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.701: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.704: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.706: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.711: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.713: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.718: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.720: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.751: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-24.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.032: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.037: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.041: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.044: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.046: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.048: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.051: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.053: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.055: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.058: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.060: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.091: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-25.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.376: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.381: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.385: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.388: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.390: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.392: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.395: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.397: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.399: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.402: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.404: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.435: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-42.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.712: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.717: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.721: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.725: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.728: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.730: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.732: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.734: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.737: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.739: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.770: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-43-mod.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.048: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.053: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.057: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.060: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.062: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.064: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.067: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.069: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.071: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.074: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.076: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.107: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-43.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.380: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.385: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.389: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.391: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.393: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.396: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.398: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.400: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.403: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.405: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.407: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.438: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P4-47.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.712: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.717: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.721: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.726: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.728: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.730: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.732: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.735: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.737: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.739: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.770: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-10_11-awesome.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.038: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.043: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.049: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.051: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.064: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.066: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.068: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.099: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.175: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-19.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.362: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.367: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.371: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.373: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.376: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.378: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.383: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.385: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.387: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.390: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.421: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-23_24.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.699: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.704: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.712: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.717: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.719: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.722: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.724: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.726: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.757: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P5-4.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.023: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.028: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.032: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.034: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.037: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.039: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.041: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.043: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.046: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.048: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.050: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.081: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.161: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +P6-6_11.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.343: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.348: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.352: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.354: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.357: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.359: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.361: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.363: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.366: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.368: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.370: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.401: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.465: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.465: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.465: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.481: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.481: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +tile_test4.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.676: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.681: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.685: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.687: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.690: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.692: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.698: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.700: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.702: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.704: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.707: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.738: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py +weird_one.svg +Warning: Option --without-gui= is deprecated + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.008: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.013: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.017: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.020: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.022: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.025: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.027: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.029: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.031: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.034: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.036: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.067: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'hersheydata.py'. Looked in: + /home/lex/.config/inkscape/extensions/hersheydata.py + /usr/share/inkscape/extensions/hersheydata.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplepath.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplepath.py + /usr/share/inkscape/extensions/simplepath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simpletransform.py'. Looked in: + /home/lex/.config/inkscape/extensions/simpletransform.py + /usr/share/inkscape/extensions/simpletransform.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cubicsuperpath.py'. Looked in: + /home/lex/.config/inkscape/extensions/cubicsuperpath.py + /usr/share/inkscape/extensions/cubicsuperpath.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cspsubdiv.py'. Looked in: + /home/lex/.config/inkscape/extensions/cspsubdiv.py + /usr/share/inkscape/extensions/cspsubdiv.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'bezmisc.py'. Looked in: + /home/lex/.config/inkscape/extensions/bezmisc.py + /usr/share/inkscape/extensions/bezmisc.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: + /home/lex/.config/inkscape/extensions/simplestyle.py + /usr/share/inkscape/extensions/simplestyle.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py + +** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: + /home/lex/.config/inkscape/extensions/inkex.py + /usr/share/inkscape/extensions/inkex.py diff --git a/tiles/tile_test4.svg b/tiles/tile_test4.svg index c73cfa55..0b8962aa 100644 --- a/tiles/tile_test4.svg +++ b/tiles/tile_test4.svg @@ -1,8 +1,8 @@ + style="display:inline;opacity:0.75;fill:#ff0000;stroke:#ff0000;stroke-width:0.16" + d="M 48.604167,96.114964 69.387687,84.115594 20.892802,0.11999999 0.10928203,12.119372 Z" /> + cx="21.057768" + cy="24.131155" + r="9.1448078" /> diff --git a/tiles/weird_one.svg b/tiles/weird_one.svg index 347a43fe..f72980ec 100644 --- a/tiles/weird_one.svg +++ b/tiles/weird_one.svg @@ -1,8 +1,8 @@ + transform="matrix(0.4,0,0,0.4,-6.7021753,-5.3449652)" /> -- cgit v1.2.3 From 6612d10689e8f5238f34d68e9a9cde53371685a5 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Jan 2023 21:30:45 -0500 Subject: avoid super-dense meander graph --- lib/elements/fill_stitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 790eec5c..46f04edc 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -168,7 +168,7 @@ class FillStitch(EmbroideryElement): @property @param('meander_scale_percent', _('Meander pattern scale'), type='float', unit="%", default=100, select_items=[('fill_method', 4)], sort_index=4) def meander_scale(self): - return np.maximum(self.get_split_float_param('meander_scale_percent', (100, 100)), (10, 10)) / 100 + return np.maximum(self.get_split_float_param('meander_scale_percent', (100, 100)), (30, 30)) / 100 @property @param('meander_padding_mm', _('Meander padding'), type='float', unit="mm", default=0, select_items=[('fill_method', 4)], sort_index=5) -- cgit v1.2.3 From 68249fa783b8ca788f31cfb72490c78b163ee1a4 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Jan 2023 21:35:02 -0500 Subject: avoid weird end of line after smoothing --- lib/utils/geometry.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/lib/utils/geometry.py b/lib/utils/geometry.py index 366a433f..e7fd5b76 100644 --- a/lib/utils/geometry.py +++ b/lib/utils/geometry.py @@ -166,6 +166,27 @@ def _remove_duplicate_coordinates(coords_array): return coords_array[keepers] +def _add_extra_points(coords): + """Add points at the start and end of the path. + + The spline-based smoothing in smooth_path sometimes makes a wild deviation at the + start or end. Adding 3 extra points almost identical to the start and end points + seems to avoid this. + """ + + direction = coords[1] - coords[0] + amount = direction * 0.001 + + start_points = [coords[0], coords[0] + amount, coords[0] + amount * 2, coords[0] + amount * 3] + + direction = coords[-2] - coords[-1] + amount = direction * 0.001 + + end_points = [coords[-1] + amount * 3, coords[-1] + amount * 2, coords[-1] + amount, coords[-1]] + + return np.concatenate((start_points, coords[1:-1], end_points), axis=0) + + def smooth_path(path, smoothness=1.0): """Smooth a path of coordinates. @@ -187,6 +208,10 @@ def smooth_path(path, smoothness=1.0): coords = _remove_duplicate_coordinates(np.array(path)) num_points = len(coords) + if num_points <= 3: + # splprep throws an error unless num_points > k + return path + # s is explained in this issue: https://github.com/scipy/scipy/issues/11916 # the smoothness parameter limits how much the smoothed path can deviate # from the original path. The standard deviation of the distance between @@ -195,6 +220,8 @@ def smooth_path(path, smoothness=1.0): # up to 1mm away from the original path. s = num_points * (smoothness ** 2) + coords = _add_extra_points(coords) + # .T transposes the array (for some reason splprep expects # [[x1, x2, ...], [y1, y2, ...]] tck, fp, ier, msg = splprep(coords.T, s=s, k=3, nest=-1, full_output=1) -- cgit v1.2.3 From 4935d59f5dfbf3c4a8a0733b1aa6380cd11aefb4 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Jan 2023 21:35:24 -0500 Subject: wip --- lib/stitches/meander_fill.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py index cb6e3f4e..81efa398 100644 --- a/lib/stitches/meander_fill.py +++ b/lib/stitches/meander_fill.py @@ -20,6 +20,7 @@ def meander_fill(fill, shape, shape_index, starting_point, ending_point): debug.log(f"tile name: {tile.name}") + # from ..utils.geometry import ensure_geometry_collection # debug.log_line_strings(ensure_geometry_collection(shape.boundary).geoms, 'Meander shape') graph = tile.to_graph(shape, fill.meander_scale, fill.meander_padding) # debug.log_graph(graph, 'Meander graph') @@ -67,6 +68,8 @@ def find_initial_path(graph, start, end): # nx.all_simple_paths(graph, start, end) and choose the first one. # However, that tends to pick a really "orderly" path. Shortest # path looks more random. + + # TODO: handle if this can't find a path return nx.shortest_path(graph, start, end) -- cgit v1.2.3 From 575fa98c66ff3c7e7a89d0e7229a1ab1b7f7b529 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 28 Jan 2023 22:09:24 -0500 Subject: fix weird tile --- tiles/N4-13c-awesome.svg | 57 +++++++++--------------------------------------- 1 file changed, 10 insertions(+), 47 deletions(-) diff --git a/tiles/N4-13c-awesome.svg b/tiles/N4-13c-awesome.svg index 92189b54..dd6fe6b4 100644 --- a/tiles/N4-13c-awesome.svg +++ b/tiles/N4-13c-awesome.svg @@ -6,6 +6,7 @@ version="1.1" id="svg70" sodipodi:docname="N4-13c-awesome.svg" + inkscape:version="1.2 (1:1.2.1+202207142221+cd75a1ee6d)" 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" @@ -20,7 +21,12 @@ inkscape:showpageshadow="2" inkscape:pageopacity="0.0" inkscape:pagecheckerboard="0" - inkscape:deskcolor="#d1d1d1" /> + inkscape:deskcolor="#d1d1d1" + showgrid="false" + inkscape:zoom="25.190414" + inkscape:cx="23.87813" + inkscape:cy="15.124801" + inkscape:current-layer="svg70" /> \ No newline at end of file diff --git a/tiles/hexagon.svg b/tiles/hexagon.svg index 56158ced..e5093ae7 100644 --- a/tiles/hexagon.svg +++ b/tiles/hexagon.svg @@ -1,123 +1,27 @@ - - - - - - - + + + + - + image/svg+xml - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/log b/tiles/log deleted file mode 100644 index 92b81bb1..00000000 --- a/tiles/log +++ /dev/null @@ -1,36084 +0,0 @@ -diamond_square.svg -hexagon.svg -hex_N6-1.svg -N3-11a.svg -diamond_square.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.064: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.069: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.073: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.075: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.077: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.080: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.082: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.084: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.086: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.092: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.097: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.123: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.189: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107290): WARNING **: 15:25:25.204: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -hexagon.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.403: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.408: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.412: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.414: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.417: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.438: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.439: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.465: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.528: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.528: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.529: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.543: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.543: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.544: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107302): WARNING **: 15:25:26.545: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -hex_N6-1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.748: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.754: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.758: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.760: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.762: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.765: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.767: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.774: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.776: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.781: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.807: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.871: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107315): WARNING **: 15:25:27.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-11a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.079: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.084: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.088: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.091: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.102: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.104: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.112: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.138: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.203: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.204: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.204: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107326): WARNING **: 15:25:29.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-12.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.432: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.438: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.446: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.448: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.451: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.453: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.455: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.460: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.465: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.492: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.556: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107338): WARNING **: 15:25:30.572: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-16a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.774: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.780: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.784: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.786: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.791: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.793: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.795: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.800: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.807: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.834: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.897: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.898: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107349): WARNING **: 15:25:31.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-17.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.118: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.123: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.129: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.132: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.134: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.136: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.139: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.141: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.146: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.151: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.179: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.244: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.258: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.258: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.258: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.259: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107361): WARNING **: 15:25:33.260: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-18-modified.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.457: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.462: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.466: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.473: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.485: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.490: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.517: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107371): WARNING **: 15:25:34.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-18.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.799: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.805: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.811: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.815: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.818: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.820: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.822: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.825: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.827: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.832: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.858: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107384): WARNING **: 15:25:35.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-20.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.137: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.142: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.148: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.150: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.153: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.155: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.157: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.159: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.162: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.164: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.169: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.198: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.261: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.262: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.276: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107394): WARNING **: 15:25:37.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-21.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.487: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.493: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.497: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.500: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.502: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.505: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.507: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.509: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.511: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.514: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.521: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.547: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.611: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.625: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.626: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107407): WARNING **: 15:25:38.627: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-23b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.829: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.834: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.838: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.840: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.843: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.845: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.847: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.852: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.854: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.856: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.861: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.887: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.950: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.966: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107420): WARNING **: 15:25:39.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-25c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.160: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.165: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.169: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.171: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.174: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.176: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.178: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.181: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.183: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.185: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.193: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.219: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.283: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.298: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107433): WARNING **: 15:25:41.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-26b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.497: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.503: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.506: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.509: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.511: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.513: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.518: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.520: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.523: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.525: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.530: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.556: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.621: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.636: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107443): WARNING **: 15:25:42.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-27.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.829: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.835: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.839: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.841: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.844: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.846: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.848: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.853: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.862: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.888: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.951: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.966: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107455): WARNING **: 15:25:43.967: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-2a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.177: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.182: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.186: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.191: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.194: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.196: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.201: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.203: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.205: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.210: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.236: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.300: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.300: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.314: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.314: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107465): WARNING **: 15:25:45.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-2b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.505: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.510: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.514: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.519: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.521: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.523: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.526: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.528: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.530: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.532: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.537: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.563: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.628: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.643: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107478): WARNING **: 15:25:46.644: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-30a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.842: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.847: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.851: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.853: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.858: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.862: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.865: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.867: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.869: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.874: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.900: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.964: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.964: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.964: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.978: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107489): WARNING **: 15:25:47.980: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-4a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.173: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.178: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.182: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.184: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.186: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.189: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.191: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.205: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.231: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.295: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.310: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107502): WARNING **: 15:25:49.311: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-4b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.504: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.509: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.513: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.515: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.518: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.520: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.524: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.527: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.529: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.531: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.536: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.562: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.626: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.641: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107513): WARNING **: 15:25:50.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-51b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.830: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.835: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.839: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.841: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.844: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.846: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.848: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.853: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.862: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.889: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.955: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.970: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107525): WARNING **: 15:25:51.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-57f.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.178: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.183: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.187: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.189: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.192: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.194: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.196: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.201: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.203: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.206: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.211: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.237: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.315: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107539): WARNING **: 15:25:53.316: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-58b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.524: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.529: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.533: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.535: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.538: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.540: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.545: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.548: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.550: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.552: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.555: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.559: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.585: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.645: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.646: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107548): WARNING **: 15:25:54.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-6.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.856: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.861: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.865: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.867: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.870: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.872: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.874: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.877: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.879: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.881: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.883: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.888: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.914: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.977: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.977: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.993: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107561): WARNING **: 15:25:55.994: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-7.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.184: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.189: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.204: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.207: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.209: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.212: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.217: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.243: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.323: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107572): WARNING **: 15:25:57.323: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-8a-mistake.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.524: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.529: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.533: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.535: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.538: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.540: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.542: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.544: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.547: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.549: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.551: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.556: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.582: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.646: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.661: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107584): WARNING **: 15:25:58.662: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-8a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.851: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.856: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.863: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.865: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.868: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.870: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.872: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.875: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.877: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.879: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.884: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.910: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.974: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.975: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.989: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107594): WARNING **: 15:25:59.990: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-8b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.176: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.182: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.186: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.190: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.197: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.204: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.210: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.238: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.303: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.318: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107608): WARNING **: 15:26:01.319: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13b-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.513: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.518: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.525: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.528: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.530: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.532: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.535: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.537: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.540: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.542: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.547: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.574: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.637: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.652: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107617): WARNING **: 15:26:02.653: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13c-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.848: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.853: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.862: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.864: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.867: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.869: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.871: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.873: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.876: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.881: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.907: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.970: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.985: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107631): WARNING **: 15:26:03.986: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13d-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.192: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.197: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.201: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.203: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.205: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.208: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.210: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.212: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.215: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.217: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.219: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.224: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.251: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.314: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.329: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107640): WARNING **: 15:26:05.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13e-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.540: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.545: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.549: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.552: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.554: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.556: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.559: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.561: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.563: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.566: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.568: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.573: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.599: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.664: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.679: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107653): WARNING **: 15:26:06.680: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13f-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.882: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.887: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.891: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.893: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.896: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.898: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.900: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.903: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.905: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.907: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.910: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.914: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.914: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.915: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.915: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.915: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:07.940: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.004: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.019: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107664): WARNING **: 15:26:08.020: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-16a-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.233: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.238: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.242: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.244: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.248: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.252: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.256: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.259: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.263: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.268: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.272: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.280: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.312: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.376: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.391: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107676): WARNING **: 15:26:09.392: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-19.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.620: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.625: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.629: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.632: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.636: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.638: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.640: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.643: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.645: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.647: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.650: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.655: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.682: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.746: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.761: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107687): WARNING **: 15:26:10.762: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-20.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.960: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.965: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.969: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.971: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.974: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.976: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.978: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.981: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.983: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.985: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.988: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.992: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:11.993: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.019: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.082: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.082: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.083: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.097: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.097: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107790): WARNING **: 15:26:12.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-21c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.318: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.323: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.327: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.329: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.332: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.334: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.336: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.339: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.341: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.343: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.346: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.352: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.383: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.456: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.473: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107799): WARNING **: 15:26:13.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-22-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.702: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.707: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.711: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.713: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.716: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.718: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.720: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.725: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.727: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.729: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.734: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.764: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.829: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.845: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.846: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107904): WARNING **: 15:26:14.847: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-23a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.054: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.059: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.063: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.065: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.068: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.070: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.072: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.075: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.077: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.079: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.081: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.086: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.112: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.175: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.175: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.176: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.190: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.190: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.191: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.192: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.192: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107921): WARNING **: 15:26:16.192: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-23c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.401: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.406: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.410: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.412: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.415: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.417: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.428: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.433: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.459: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.523: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.524: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107931): WARNING **: 15:26:17.539: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-27.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.736: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.741: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.745: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.747: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.750: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.752: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.754: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.757: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.759: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.762: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.769: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.795: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.859: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.874: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107945): WARNING **: 15:26:18.875: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-29e.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.080: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.085: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.091: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.094: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.096: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.101: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.112: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.112: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.112: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.113: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.113: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.139: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.202: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.217: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107955): WARNING **: 15:26:20.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-29f.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.415: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.421: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.425: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.427: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.437: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.439: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.446: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.451: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.477: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.537: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.553: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107967): WARNING **: 15:26:21.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-31-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.745: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.750: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.754: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.757: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.759: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.761: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.778: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.804: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.867: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.868: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.868: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.868: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.882: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107978): WARNING **: 15:26:22.883: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-38.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.072: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.077: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.081: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.084: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.086: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.088: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.091: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.097: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.105: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.131: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.194: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.195: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.209: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.209: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.209: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.210: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:107990): WARNING **: 15:26:24.211: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-42e.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.410: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.415: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.423: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.428: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.430: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.437: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.442: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.468: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108000): WARNING **: 15:26:25.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-44.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.755: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.760: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.782: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.787: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.813: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.880: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.881: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.881: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108014): WARNING **: 15:26:26.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-52.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.089: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.094: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.110: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.112: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.114: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.117: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.122: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.148: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.211: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.226: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108023): WARNING **: 15:26:28.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-54d.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.433: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.438: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.449: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.451: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.456: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.461: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.465: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.466: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.492: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.570: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108036): WARNING **: 15:26:29.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-5a-2.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.759: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.764: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.779: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.782: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.784: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.786: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.791: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.817: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.881: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.896: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108047): WARNING **: 15:26:30.897: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-5a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.093: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.098: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.102: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.109: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.112: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.114: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.116: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.118: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.121: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.126: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.152: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.216: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.231: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108059): WARNING **: 15:26:32.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-82.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.432: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.437: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.441: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.443: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.445: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.448: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.450: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.452: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.455: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.457: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.459: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.464: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.490: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.555: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.570: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108070): WARNING **: 15:26:33.571: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-85d.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.764: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.770: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.774: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.776: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.781: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.785: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.788: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.790: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.792: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.797: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.823: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.902: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108085): WARNING **: 15:26:34.903: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N5-1e1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.099: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.104: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.108: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.110: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.113: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.115: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.117: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.120: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.122: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.124: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.131: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.157: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.220: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.235: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108095): WARNING **: 15:26:36.236: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N5-1q2-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.422: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.427: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.433: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.440: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.442: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.444: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.449: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.454: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.480: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.543: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.543: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.544: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.558: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108108): WARNING **: 15:26:37.559: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N5-1t.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.755: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.760: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.776: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.788: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.813: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.879: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.894: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108118): WARNING **: 15:26:38.895: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-2.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.076: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.081: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.085: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.087: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.092: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.094: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.096: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.101: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.108: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.134: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.199: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108132): WARNING **: 15:26:40.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-5b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.438: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.443: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.449: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.452: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.456: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.461: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.463: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.465: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.470: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.497: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108145): WARNING **: 15:26:41.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-6a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.789: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.794: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.800: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.805: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.807: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.812: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.814: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.821: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.848: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108163): WARNING **: 15:26:42.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-6c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.129: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.134: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.150: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.152: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.161: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.188: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.251: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108176): WARNING **: 15:26:44.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -NC5-11a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.469: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.474: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.485: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.487: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.490: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.492: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.494: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.497: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.502: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.527: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.605: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.606: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108186): WARNING **: 15:26:45.607: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -NC5-20a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.798: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.804: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.808: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.810: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.812: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.815: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.817: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.819: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.822: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.824: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.826: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.831: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.857: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.921: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.936: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108199): WARNING **: 15:26:46.937: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P3-12.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.126: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.132: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.152: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.159: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.185: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.263: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108210): WARNING **: 15:26:48.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P3-1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.462: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.467: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.481: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.486: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.488: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.490: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.495: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.522: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.585: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.586: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.586: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.586: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.600: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.601: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108223): WARNING **: 15:26:49.602: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-10.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.785: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.790: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.799: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.801: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.804: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.806: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.808: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.810: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.818: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.845: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.923: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108233): WARNING **: 15:26:50.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-15.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.126: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.131: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.137: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.144: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.151: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.158: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.159: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.185: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.248: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.249: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.264: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108246): WARNING **: 15:26:52.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-19.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.457: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.463: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.466: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.478: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.485: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.490: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.516: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.580: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.595: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108257): WARNING **: 15:26:53.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.806: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.811: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.815: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.817: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.820: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.822: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.824: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.827: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.829: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.831: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.834: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.839: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.865: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.943: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108269): WARNING **: 15:26:54.944: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-23.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.129: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.134: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.147: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.152: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.161: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.187: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.250: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.251: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.251: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.265: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.266: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108279): WARNING **: 15:26:56.267: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-24.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.460: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.465: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.481: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.484: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.486: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.488: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.491: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.496: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.522: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.596: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.597: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108292): WARNING **: 15:26:57.598: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-25.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.793: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.798: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.804: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.806: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.814: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.819: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.821: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.823: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.828: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.855: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.929: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108302): WARNING **: 15:26:58.930: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-42.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.118: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.123: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.129: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.132: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.134: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.136: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.138: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.141: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.143: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.145: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.150: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.176: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.239: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.254: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108316): WARNING **: 15:27:00.255: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-43-mod.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.444: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.449: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.453: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.455: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.458: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.460: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.463: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.465: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.467: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.472: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.477: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.503: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.566: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.567: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108327): WARNING **: 15:27:01.583: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-43.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.760: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.766: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.774: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.779: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.781: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.786: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.788: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.793: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.819: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.885: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.900: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108339): WARNING **: 15:27:02.901: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-47.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.105: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.110: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.114: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.116: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.119: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.121: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.123: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.126: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.128: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.130: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.133: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.138: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.164: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.227: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.242: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108349): WARNING **: 15:27:04.243: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-10_11-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.427: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.432: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.436: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.441: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.443: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.445: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.447: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.450: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.452: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.459: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.485: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.564: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108363): WARNING **: 15:27:05.565: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-19.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.755: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.760: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.764: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.769: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.771: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.773: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.778: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.782: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.787: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.813: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.877: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.892: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108374): WARNING **: 15:27:06.893: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-23_24.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.075: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.081: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.084: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.087: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.089: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.092: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.094: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.096: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.101: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.108: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.134: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.203: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.218: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108386): WARNING **: 15:27:08.219: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-4.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.415: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.420: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.427: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.434: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.436: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.440: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.443: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.448: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.474: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.538: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.553: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108400): WARNING **: 15:27:09.554: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P6-6_11.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.749: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.754: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.758: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.760: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.763: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.765: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.772: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.775: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.782: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.808: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.871: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.872: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.886: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.887: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108409): WARNING **: 15:27:10.888: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -tile_test4.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.077: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.082: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.086: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.088: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.090: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.097: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.102: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.104: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.109: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.135: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.198: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.213: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108422): WARNING **: 15:27:12.214: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -weird_one.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.406: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.411: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.415: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.417: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.420: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.422: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.425: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.427: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.434: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.439: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.465: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.531: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.546: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.547: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:108433): WARNING **: 15:27:13.548: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -diamond_square.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.407: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.412: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.416: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.418: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.423: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.425: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.428: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.430: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.432: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.439: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.466: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.560: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.561: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.561: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.575: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.575: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.576: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109859): WARNING **: 15:36:00.577: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -hexagon.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.777: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.783: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.787: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.791: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.801: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.803: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.805: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.810: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.836: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.900: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.915: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109871): WARNING **: 15:36:01.916: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -hex_N6-1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.107: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.112: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.116: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.118: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.121: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.123: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.126: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.128: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.130: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.133: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.140: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.166: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.229: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.246: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109883): WARNING **: 15:36:03.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-11a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.451: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.456: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.460: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.463: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.465: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.468: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.470: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.472: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.475: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.477: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.479: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.484: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.510: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.575: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109893): WARNING **: 15:36:04.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-12.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.788: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.793: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.797: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.799: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.802: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.804: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.807: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.809: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.811: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.821: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.847: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.912: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.927: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109906): WARNING **: 15:36:05.928: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-16a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.130: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.135: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.139: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.144: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.146: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.149: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.151: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.158: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.163: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.189: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.252: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.268: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109917): WARNING **: 15:36:07.269: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-17.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.468: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.473: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.477: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.480: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.482: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.484: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.487: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.489: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.491: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.494: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.496: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.501: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.527: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.590: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.591: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.605: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109929): WARNING **: 15:36:08.606: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-18-modified.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.802: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.807: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.811: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.813: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.816: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.818: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.820: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.823: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.825: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.827: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.830: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.834: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.860: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.923: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.924: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.938: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.939: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109941): WARNING **: 15:36:09.940: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-18.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.132: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.137: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.141: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.144: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.146: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.148: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.154: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.156: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.159: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.161: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.163: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.168: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.194: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.262: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.277: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109955): WARNING **: 15:36:11.278: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-20.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.493: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.498: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.502: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.504: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.507: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.509: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.512: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.514: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.516: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.519: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.527: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.554: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.618: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.619: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.633: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109968): WARNING **: 15:36:12.634: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-21.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.840: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.846: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.852: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.854: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.857: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.859: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.861: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.864: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.866: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.868: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.873: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.899: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.962: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.962: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.962: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.963: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.978: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109977): WARNING **: 15:36:13.979: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-23b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.193: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.198: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.204: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.207: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.209: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.214: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.217: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.219: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.221: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.224: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.230: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.263: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.323: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.338: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:109991): WARNING **: 15:36:15.339: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-25c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.569: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.574: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.578: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.581: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.583: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.585: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.588: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.590: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.592: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.595: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.597: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.602: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.629: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.693: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.708: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110003): WARNING **: 15:36:16.709: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-26b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.910: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.915: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.919: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.921: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.924: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.926: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.929: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.931: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.933: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.935: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.938: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.943: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:17.969: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.032: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.033: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.047: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.047: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.048: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.049: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.049: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110016): WARNING **: 15:36:18.049: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-27.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.253: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.258: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.262: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.264: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.267: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.269: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.271: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.274: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.276: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.278: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.281: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.286: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.314: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.396: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.410: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.411: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110026): WARNING **: 15:36:19.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-2a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.611: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.616: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.620: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.622: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.625: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.627: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.629: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.631: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.634: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.636: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.638: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.643: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.669: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.732: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.747: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110038): WARNING **: 15:36:20.748: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-2b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.960: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.966: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.970: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.972: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.974: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.977: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.979: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.981: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.984: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.986: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.988: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:21.993: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.019: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.083: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.098: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110051): WARNING **: 15:36:22.099: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-30a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.293: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.298: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.303: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.305: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.307: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.310: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.312: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.315: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.317: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.319: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.322: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.327: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.353: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.417: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.432: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110064): WARNING **: 15:36:23.433: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-4a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.633: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.638: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.642: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.644: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.647: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.649: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.651: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.653: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.656: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.658: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.660: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.665: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.691: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.754: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.769: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110074): WARNING **: 15:36:24.770: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-4b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.979: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.984: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.988: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.990: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.993: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.995: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:25.997: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.000: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.002: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.004: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.007: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.012: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.038: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.101: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.116: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.117: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110087): WARNING **: 15:36:26.118: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-51b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.312: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.317: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.321: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.323: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.327: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.330: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.333: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.335: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.337: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.340: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.342: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.347: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.373: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.436: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.451: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110096): WARNING **: 15:36:27.452: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-57f.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.667: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.672: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.676: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.678: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.681: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.683: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.685: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.688: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.690: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.692: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.695: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.699: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.699: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.700: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.700: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.700: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.726: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.791: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.806: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110109): WARNING **: 15:36:28.807: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-58b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.007: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.012: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.016: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.018: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.020: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.023: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.025: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.027: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.030: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.032: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.034: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.039: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.065: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.128: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.128: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.129: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.143: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.144: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110119): WARNING **: 15:36:30.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-6.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.335: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.340: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.346: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.348: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.351: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.353: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.355: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.358: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.360: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.362: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.364: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.369: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.395: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.459: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.474: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110133): WARNING **: 15:36:31.475: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-7.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.714: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.719: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.725: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.728: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.730: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.732: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.734: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.737: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.739: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.741: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.746: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.772: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.851: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110143): WARNING **: 15:36:32.852: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-8a-mistake.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.036: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.041: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.045: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.050: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.052: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.057: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.063: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.068: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.095: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.161: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.176: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110155): WARNING **: 15:36:34.177: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-8a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.363: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.369: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.373: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.375: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.378: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.380: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.382: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.384: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.387: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.389: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.391: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.396: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.422: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.486: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.486: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.487: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.503: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110169): WARNING **: 15:36:35.503: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N3-8b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.692: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.697: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.701: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.703: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.706: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.712: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.717: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.719: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.724: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.750: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.815: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.815: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.815: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.829: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.830: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110178): WARNING **: 15:36:36.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13b-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.012: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.017: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.021: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.023: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.026: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.028: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.030: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.033: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.035: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.037: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.040: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.045: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.071: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.134: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.149: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110191): WARNING **: 15:36:38.150: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13c-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.360: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.365: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.369: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.371: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.374: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.376: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.379: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.383: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.386: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.388: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.393: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.419: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.483: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.483: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.483: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.484: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.498: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.498: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110201): WARNING **: 15:36:39.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13d-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.696: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.701: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.705: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.712: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.717: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.719: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.722: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.724: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.729: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.755: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.819: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.820: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.820: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.835: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110215): WARNING **: 15:36:40.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13e-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.035: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.041: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.045: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.049: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.052: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.056: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.063: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.068: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.095: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.158: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110225): WARNING **: 15:36:42.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-13f-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.364: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.369: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.373: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.376: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.378: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.383: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.385: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.387: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.390: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.392: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.397: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.423: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.486: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110238): WARNING **: 15:36:43.502: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-16a-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.704: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.709: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.713: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.718: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.720: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.722: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.724: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.727: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.729: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.731: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.736: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.762: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.827: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.842: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110248): WARNING **: 15:36:44.843: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-19.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.050: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.055: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.064: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.066: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.068: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.071: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.073: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.075: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.078: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.082: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.082: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.083: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.083: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.083: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.108: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.172: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.186: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.187: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110261): WARNING **: 15:36:46.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-20.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.410: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.415: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.419: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.433: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.443: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.470: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.534: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.549: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110271): WARNING **: 15:36:47.550: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-21c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.742: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.748: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.752: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.754: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.756: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.759: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.761: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.763: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.766: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.768: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.770: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.775: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.801: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.864: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.865: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.879: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.880: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110285): WARNING **: 15:36:48.881: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-22-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.084: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.089: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.093: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.095: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.098: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.100: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.103: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.105: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.107: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.110: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.112: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.117: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.143: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.206: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.207: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.221: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110296): WARNING **: 15:36:50.222: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-23a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.412: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.417: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.421: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.424: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.426: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.429: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.431: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.433: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.435: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.438: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.440: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.445: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.471: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.535: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.536: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.551: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110308): WARNING **: 15:36:51.552: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-23c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.768: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.773: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.777: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.780: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.783: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.785: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.787: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.792: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.801: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.827: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.892: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.907: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110319): WARNING **: 15:36:52.908: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-27.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.108: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.114: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.118: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.120: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.122: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.125: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.129: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.131: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.134: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.136: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.141: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.167: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.230: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.245: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110331): WARNING **: 15:36:54.246: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-29e.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.445: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.450: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.454: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.456: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.459: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.461: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.467: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.469: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.471: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.481: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.506: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.566: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.581: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110342): WARNING **: 15:36:55.582: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-29f.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.775: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.780: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.785: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.787: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.789: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.792: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.794: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.796: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.798: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.801: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.803: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.808: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.834: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.898: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.913: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110354): WARNING **: 15:36:56.914: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-31-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.111: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.116: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.120: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.122: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.125: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.127: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.133: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.135: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.137: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.140: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.142: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.147: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.173: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.232: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.247: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110364): WARNING **: 15:36:58.248: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-38.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.463: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.468: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.472: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.474: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.476: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.479: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.481: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.483: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.486: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.488: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.490: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.495: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.522: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.594: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.594: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.594: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.595: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.609: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.609: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.609: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.610: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.611: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110377): WARNING **: 15:36:59.611: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-42e.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.827: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.832: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.836: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.838: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.841: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.843: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.845: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.848: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.850: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.852: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.855: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.859: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.859: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.860: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.860: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.860: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.885: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.949: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.964: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110390): WARNING **: 15:37:00.965: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-44.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.162: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.167: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.171: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.174: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.176: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.178: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.181: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.183: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.185: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.188: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.190: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.195: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.221: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.284: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.285: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.299: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110401): WARNING **: 15:37:02.300: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-52.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.499: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.504: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.508: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.510: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.513: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.515: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.517: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.520: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.522: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.524: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.526: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.531: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.557: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.620: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.621: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.635: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.636: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110413): WARNING **: 15:37:03.637: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-54d.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.833: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.838: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.842: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.844: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.847: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.849: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.851: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.854: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.856: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.858: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.860: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.865: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.891: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.955: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.956: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.970: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.971: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110424): WARNING **: 15:37:04.972: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-5a-2.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.184: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.189: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.193: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.195: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.198: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.200: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.202: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.205: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.207: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.209: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.212: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.216: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.242: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.306: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.321: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110437): WARNING **: 15:37:06.322: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-5a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.520: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.525: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.529: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.532: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.534: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.536: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.539: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.541: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.543: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.546: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.548: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.553: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.579: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.642: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110447): WARNING **: 15:37:07.658: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-82.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.855: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.860: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.864: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.866: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.869: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.871: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.874: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.876: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.878: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.880: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.883: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.888: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.914: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.977: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.992: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110460): WARNING **: 15:37:08.993: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N4-85d.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.209: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.214: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.218: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.220: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.222: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.225: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.227: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.229: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.232: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.234: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.236: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.241: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.267: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.330: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.345: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110470): WARNING **: 15:37:10.346: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N5-1e1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.535: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.540: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.544: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.546: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.549: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.551: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.553: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.555: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.558: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.560: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.562: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.567: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.593: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.657: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.672: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110484): WARNING **: 15:37:11.673: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N5-1q2-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.892: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.898: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.901: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.904: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.906: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.909: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.911: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.913: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.915: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.918: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.920: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.925: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:12.951: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.015: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.030: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110494): WARNING **: 15:37:13.031: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N5-1t.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.274: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.279: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.283: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.285: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.288: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.291: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.293: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.295: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.298: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.300: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.302: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.307: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.333: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.397: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.412: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.413: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110507): WARNING **: 15:37:14.414: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-2.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.600: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.605: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.609: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.612: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.614: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.616: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.619: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.621: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.623: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.625: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.628: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.633: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.659: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.721: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.722: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.736: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110517): WARNING **: 15:37:15.737: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-5b.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.953: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.958: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.962: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.964: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.967: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.969: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.972: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.974: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.976: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.978: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.981: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:16.986: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.012: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.076: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.091: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110530): WARNING **: 15:37:17.092: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-6a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.299: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.304: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.308: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.311: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.313: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.315: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.318: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.320: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.322: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.324: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.327: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.332: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.358: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.422: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.437: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110540): WARNING **: 15:37:18.438: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -N6-6c.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.661: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.666: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.670: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.672: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.675: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.677: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.679: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.682: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.684: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.686: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.689: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.693: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.693: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.693: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.694: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.694: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.720: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.784: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.799: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110553): WARNING **: 15:37:19.800: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -NC5-11a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.017: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.022: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.026: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.028: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.030: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.033: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.035: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.037: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.040: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.042: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.044: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.049: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.075: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.138: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.153: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110564): WARNING **: 15:37:21.154: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -NC5-20a.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.341: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.346: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.350: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.352: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.354: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.357: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.359: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.361: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.363: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.366: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.368: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.373: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.399: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.464: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.479: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110578): WARNING **: 15:37:22.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P3-12.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.668: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.673: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.677: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.679: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.681: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.684: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.686: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.688: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.691: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.693: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.695: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.700: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.730: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.795: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.810: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110591): WARNING **: 15:37:23.811: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P3-1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:24.998: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.003: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.007: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.009: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.012: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.014: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.016: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.019: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.021: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.023: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.026: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.031: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.057: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.120: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.134: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.135: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110601): WARNING **: 15:37:25.136: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-10.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.324: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.329: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.333: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.335: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.338: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.340: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.342: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.345: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.347: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.349: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.351: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.356: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.383: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.446: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.447: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.461: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110614): WARNING **: 15:37:26.462: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-15.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.682: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.687: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.691: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.693: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.696: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.698: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.700: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.703: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.705: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.707: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.714: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.714: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.714: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.715: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.715: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.740: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.805: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.820: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110625): WARNING **: 15:37:27.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-19.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.029: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.034: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.038: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.040: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.043: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.045: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.050: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.052: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.057: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.061: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.061: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.061: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.062: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.062: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.088: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.152: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.167: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110638): WARNING **: 15:37:29.168: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-1.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.358: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.364: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.368: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.370: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.372: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.375: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.377: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.379: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.384: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.386: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.391: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.417: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.481: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.495: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110647): WARNING **: 15:37:30.496: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-23.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.692: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.697: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.701: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.704: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.706: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.711: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.713: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.718: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.720: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.725: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.751: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.816: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.831: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110660): WARNING **: 15:37:31.832: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-24.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.032: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.037: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.041: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.044: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.046: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.048: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.051: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.053: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.055: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.058: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.060: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.065: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.091: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.155: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.170: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110670): WARNING **: 15:37:33.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-25.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.376: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.381: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.385: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.388: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.390: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.392: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.395: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.397: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.399: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.402: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.404: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.409: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.435: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.499: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.514: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110683): WARNING **: 15:37:34.515: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-42.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.712: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.717: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.721: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.725: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.728: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.730: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.732: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.734: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.737: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.739: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.744: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.770: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110693): WARNING **: 15:37:35.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-43-mod.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.048: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.053: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.057: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.060: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.062: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.064: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.067: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.069: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.071: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.074: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.076: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.081: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.107: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.171: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.187: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110708): WARNING **: 15:37:37.188: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-43.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.380: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.385: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.389: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.391: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.393: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.396: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.398: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.400: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.403: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.405: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.407: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.412: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.438: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.501: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.516: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110718): WARNING **: 15:37:38.517: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P4-47.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.712: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.717: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.721: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.723: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.726: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.728: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.730: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.732: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.735: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.737: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.739: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.744: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.770: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.834: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.849: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110731): WARNING **: 15:37:39.850: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-10_11-awesome.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.038: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.043: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.047: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.049: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.051: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.054: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.059: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.061: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.064: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.066: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.068: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.073: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.099: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.158: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.159: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.173: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.174: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110742): WARNING **: 15:37:41.175: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-19.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.362: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.367: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.371: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.373: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.376: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.378: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.381: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.383: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.385: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.387: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.390: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.395: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.421: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.484: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.499: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110754): WARNING **: 15:37:42.500: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-23_24.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.699: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.704: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.708: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.710: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.712: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.715: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.717: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.719: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.722: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.724: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.726: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.731: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.757: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.821: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.836: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110765): WARNING **: 15:37:43.837: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P5-4.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.023: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.028: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.032: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.034: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.037: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.039: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.041: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.043: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.046: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.048: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.050: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.055: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.081: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.144: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.145: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.159: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.160: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110778): WARNING **: 15:37:45.161: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -P6-6_11.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.343: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.348: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.352: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.354: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.357: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.359: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.361: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.363: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.366: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.368: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.370: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.375: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.401: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.464: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.465: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.465: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.465: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.479: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.480: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.481: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110788): WARNING **: 15:37:46.481: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -tile_test4.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.676: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.681: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.685: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.687: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.690: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.692: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.698: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.700: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.702: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.704: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.707: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.712: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.738: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.798: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.813: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110801): WARNING **: 15:37:47.814: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py -weird_one.svg -Warning: Option --without-gui= is deprecated - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.008: Invalid default value ('False') for parameter 'D_debug' in extension 'rhs.setstroke' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.013: Invalid value ('') for appearance of parameter 'mazeSize' in extension 'command.eggbot.contributed.eggmazing' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.017: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_trimming'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.020: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_relooping'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.022: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_free_mode'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.025: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_multipass'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.027: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_plugin_occult'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.029: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linemerging'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.031: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_splitall'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.034: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_linesorting'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.036: Image file ('/home/lex/.config/inkscape/extensions/vpypetools/../000_about_fablabchemnitz.svg') not found for image widget in extension 'fablabchemnitz.de.vpype_filter'. - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb1' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb2' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb3' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb4' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.041: Invalid default value ('1') for parameter 'doverb5' in extension 'com.smanohar.inkscape-custom-iterator' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.067: Invalid value ('') for appearance of parameter 'setupType' in extension 'command.evilmadscientist.eggbot.rev250' - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.130: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'hersheydata.py'. Looked in: - /home/lex/.config/inkscape/extensions/hersheydata.py - /usr/share/inkscape/extensions/hersheydata.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.145: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplepath.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplepath.py - /usr/share/inkscape/extensions/simplepath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simpletransform.py'. Looked in: - /home/lex/.config/inkscape/extensions/simpletransform.py - /usr/share/inkscape/extensions/simpletransform.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cubicsuperpath.py'. Looked in: - /home/lex/.config/inkscape/extensions/cubicsuperpath.py - /usr/share/inkscape/extensions/cubicsuperpath.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'cspsubdiv.py'. Looked in: - /home/lex/.config/inkscape/extensions/cspsubdiv.py - /usr/share/inkscape/extensions/cspsubdiv.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'bezmisc.py'. Looked in: - /home/lex/.config/inkscape/extensions/bezmisc.py - /usr/share/inkscape/extensions/bezmisc.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'simplestyle.py'. Looked in: - /home/lex/.config/inkscape/extensions/simplestyle.py - /usr/share/inkscape/extensions/simplestyle.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py - -** (org.inkscape.Inkscape:110811): WARNING **: 15:37:49.146: Failed to find resource file 'inkex.py'. Looked in: - /home/lex/.config/inkscape/extensions/inkex.py - /usr/share/inkscape/extensions/inkex.py diff --git a/tiles/tile_test4.svg b/tiles/tile_test4.svg index 0b8962aa..4eb35d1a 100644 --- a/tiles/tile_test4.svg +++ b/tiles/tile_test4.svg @@ -1,35 +1,7 @@ - - - - - - - - - + + + + \ No newline at end of file diff --git a/tiles/weird_one.svg b/tiles/weird_one.svg index f72980ec..edd09138 100644 --- a/tiles/weird_one.svg +++ b/tiles/weird_one.svg @@ -1,35 +1,7 @@ - - - - - \ No newline at end of file -- cgit v1.2.3 From 49d39d6169268ad81ec5ada19982c234b4657fd3 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Wed, 8 Feb 2023 14:44:26 -0500 Subject: expose Expand setting in meander --- lib/elements/fill_stitch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 7c214798..466e7efb 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -503,12 +503,12 @@ class FillStitch(EmbroideryElement): @property @param('expand_mm', _('Expand'), - tooltip=_('Expand the shape before fill stitching, to compensate for gaps between shapes.'), + tooltip=_('Expand the shape before fill stitching, to compensate for gaps between shapes. Negative values contract instead.'), unit='mm', type='float', default=0, sort_index=5, - select_items=[('fill_method', 0), ('fill_method', 2)]) + select_items=[('fill_method', 0), ('fill_method', 2), ('fill_method', 4)]) def expand(self): return self.get_float_param('expand_mm', 0) -- cgit v1.2.3 From f2344375df9364f33b957d46e9cea508e1b32c67 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Wed, 8 Feb 2023 14:46:43 -0500 Subject: clarify running stitch params for meander --- lib/elements/fill_stitch.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 466e7efb..a0d89915 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -144,7 +144,7 @@ class FillStitch(EmbroideryElement): @param('smoothness_mm', _('Smoothness'), tooltip=_( 'Smooth the stitch path. Smoothness limits approximately how far the smoothed stitch path ' + - 'is allowed to deviate from the original path. Hint: a lower stitchc tolerance may be needed too.' + 'is allowed to deviate from the original path. Hint: a lower stitch tolerance may be needed too.' ), type='integer', unit='mm', @@ -404,7 +404,8 @@ class FillStitch(EmbroideryElement): @property @param('running_stitch_length_mm', _('Running stitch length (traversal between sections)'), - tooltip=_('Length of stitches around the outline of the fill region used when moving from section to section.'), + tooltip=_( + 'Length of stitches around the outline of the fill region used when moving from section to section. Also used for meander fill.'), unit='mm', type='float', default=1.5, -- cgit v1.2.3 From 3515ca399b6b01e0e293f5e62ee02ab392950183 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Wed, 8 Feb 2023 15:39:50 -0500 Subject: remove dead ends --- lib/tiles.py | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lib/tiles.py b/lib/tiles.py index 9986183b..7f46a5aa 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -139,8 +139,19 @@ class Tile: if shape.contains(line_string): graph.add_edge(line[0], line[1]) + self._remove_dead_ends(graph) + return graph + def _remove_dead_ends(self, graph): + while True: + nodes_with_degree_1 = [node for node, degree in graph.degree() if degree == 1] + + if nodes_with_degree_1: + graph.remove_nodes_from(nodes_with_degree_1) + else: + return + def all_tile_paths(): return [os.path.join(guess_inkscape_config_path(), 'tiles'), -- cgit v1.2.3 From 68542e7b319eaac3755590203bebd3117254587e Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sun, 12 Feb 2023 23:09:05 -0500 Subject: fix a bunch of tiles --- tiles/N3-11a.svg | 134 +++++++++++++++++++---- tiles/N3-21.svg | 51 --------- tiles/N3-2a.svg | 36 ------ tiles/N3-2b.svg | 36 ------ tiles/N3-4a.svg | 22 ---- tiles/N3-4b.svg | 23 ---- tiles/N3-51b.svg | 197 ++++++++++++++++++++++----------- tiles/N3-57f-modified.svg | 89 +++++++++++++++ tiles/N3-57f.svg | 65 ----------- tiles/N3-8a-mistake.svg | 20 ---- tiles/N3-8a-modified.svg | 20 ++++ tiles/N4-13b-awesome.svg | 38 ------- tiles/N4-13b.svg | 38 +++++++ tiles/N4-13c-awesome.svg | 35 ------ tiles/N4-13c.svg | 35 ++++++ tiles/N4-13d-awesome.svg | 53 --------- tiles/N4-13d.svg | 53 +++++++++ tiles/N4-13e-awesome.svg | 44 -------- tiles/N4-13e.svg | 44 ++++++++ tiles/N4-13f-awesome.svg | 39 ------- tiles/N4-13f.svg | 39 +++++++ tiles/N4-16a-awesome.svg | 48 -------- tiles/N4-16a.svg | 48 ++++++++ tiles/N4-22-awesome.svg | 41 ------- tiles/N4-22.svg | 41 +++++++ tiles/N4-31-awesome.svg | 30 ----- tiles/N4-31.svg | 30 +++++ tiles/N5-1q2-awesome.svg | 30 ----- tiles/N5-1q2.svg | 30 +++++ tiles/N6-1.svg | 16 +++ tiles/N6-6c.svg | 265 ++++++++++++++++++++++++++++++++------------- tiles/P4-1.svg | 81 +++++++++++--- tiles/P4-15.svg | 121 +++++++++++++++------ tiles/P4-19.svg | 79 +++++++++++--- tiles/P4-42.svg | 28 ----- tiles/P5-10_11-awesome.svg | 29 ----- tiles/P5-10_11.svg | 29 +++++ tiles/diamond_square.svg | 142 ++++++++++++++++++++---- tiles/hex_N6-1.svg | 16 --- tiles/tile_test4.svg | 16 --- tiles/weird_one.svg | 125 +++++++++++++++++---- 41 files changed, 1386 insertions(+), 970 deletions(-) delete mode 100644 tiles/N3-21.svg delete mode 100644 tiles/N3-2a.svg delete mode 100644 tiles/N3-2b.svg delete mode 100644 tiles/N3-4a.svg delete mode 100644 tiles/N3-4b.svg create mode 100644 tiles/N3-57f-modified.svg delete mode 100644 tiles/N3-57f.svg delete mode 100644 tiles/N3-8a-mistake.svg create mode 100644 tiles/N3-8a-modified.svg delete mode 100644 tiles/N4-13b-awesome.svg create mode 100644 tiles/N4-13b.svg delete mode 100644 tiles/N4-13c-awesome.svg create mode 100644 tiles/N4-13c.svg delete mode 100644 tiles/N4-13d-awesome.svg create mode 100644 tiles/N4-13d.svg delete mode 100644 tiles/N4-13e-awesome.svg create mode 100644 tiles/N4-13e.svg delete mode 100644 tiles/N4-13f-awesome.svg create mode 100644 tiles/N4-13f.svg delete mode 100644 tiles/N4-16a-awesome.svg create mode 100644 tiles/N4-16a.svg delete mode 100644 tiles/N4-22-awesome.svg create mode 100644 tiles/N4-22.svg delete mode 100644 tiles/N4-31-awesome.svg create mode 100644 tiles/N4-31.svg delete mode 100644 tiles/N5-1q2-awesome.svg create mode 100644 tiles/N5-1q2.svg create mode 100644 tiles/N6-1.svg delete mode 100644 tiles/P4-42.svg delete mode 100644 tiles/P5-10_11-awesome.svg create mode 100644 tiles/P5-10_11.svg delete mode 100644 tiles/hex_N6-1.svg delete mode 100644 tiles/tile_test4.svg diff --git a/tiles/N3-11a.svg b/tiles/N3-11a.svg index 33e25d33..165fb8ce 100644 --- a/tiles/N3-11a.svg +++ b/tiles/N3-11a.svg @@ -1,7 +1,112 @@ - - - - diff --git a/tiles/N3-21.svg b/tiles/N3-21.svg deleted file mode 100644 index c16863bf..00000000 --- a/tiles/N3-21.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-2a.svg b/tiles/N3-2a.svg deleted file mode 100644 index 4a953cb7..00000000 --- a/tiles/N3-2a.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-2b.svg b/tiles/N3-2b.svg deleted file mode 100644 index facdff12..00000000 --- a/tiles/N3-2b.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-4a.svg b/tiles/N3-4a.svg deleted file mode 100644 index 706a651a..00000000 --- a/tiles/N3-4a.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-4b.svg b/tiles/N3-4b.svg deleted file mode 100644 index 64cd157e..00000000 --- a/tiles/N3-4b.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-51b.svg b/tiles/N3-51b.svg index a54f9ec5..bd708549 100644 --- a/tiles/N3-51b.svg +++ b/tiles/N3-51b.svg @@ -1,7 +1,35 @@ - - - - diff --git a/tiles/N3-57f-modified.svg b/tiles/N3-57f-modified.svg new file mode 100644 index 00000000..6c41a2c7 --- /dev/null +++ b/tiles/N3-57f-modified.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + diff --git a/tiles/N3-57f.svg b/tiles/N3-57f.svg deleted file mode 100644 index 47f92527..00000000 --- a/tiles/N3-57f.svg +++ /dev/null @@ -1,65 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-8a-mistake.svg b/tiles/N3-8a-mistake.svg deleted file mode 100644 index f892d36d..00000000 --- a/tiles/N3-8a-mistake.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-8a-modified.svg b/tiles/N3-8a-modified.svg new file mode 100644 index 00000000..f892d36d --- /dev/null +++ b/tiles/N3-8a-modified.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13b-awesome.svg b/tiles/N4-13b-awesome.svg deleted file mode 100644 index d8a5020e..00000000 --- a/tiles/N4-13b-awesome.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13b.svg b/tiles/N4-13b.svg new file mode 100644 index 00000000..d8a5020e --- /dev/null +++ b/tiles/N4-13b.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13c-awesome.svg b/tiles/N4-13c-awesome.svg deleted file mode 100644 index 6eee2afd..00000000 --- a/tiles/N4-13c-awesome.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13c.svg b/tiles/N4-13c.svg new file mode 100644 index 00000000..6eee2afd --- /dev/null +++ b/tiles/N4-13c.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13d-awesome.svg b/tiles/N4-13d-awesome.svg deleted file mode 100644 index 8032cafa..00000000 --- a/tiles/N4-13d-awesome.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13d.svg b/tiles/N4-13d.svg new file mode 100644 index 00000000..8032cafa --- /dev/null +++ b/tiles/N4-13d.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13e-awesome.svg b/tiles/N4-13e-awesome.svg deleted file mode 100644 index 89acd87f..00000000 --- a/tiles/N4-13e-awesome.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13e.svg b/tiles/N4-13e.svg new file mode 100644 index 00000000..89acd87f --- /dev/null +++ b/tiles/N4-13e.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13f-awesome.svg b/tiles/N4-13f-awesome.svg deleted file mode 100644 index fc8bd5b0..00000000 --- a/tiles/N4-13f-awesome.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13f.svg b/tiles/N4-13f.svg new file mode 100644 index 00000000..fc8bd5b0 --- /dev/null +++ b/tiles/N4-13f.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-16a-awesome.svg b/tiles/N4-16a-awesome.svg deleted file mode 100644 index 3482fc98..00000000 --- a/tiles/N4-16a-awesome.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-16a.svg b/tiles/N4-16a.svg new file mode 100644 index 00000000..3482fc98 --- /dev/null +++ b/tiles/N4-16a.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-22-awesome.svg b/tiles/N4-22-awesome.svg deleted file mode 100644 index 6441eae2..00000000 --- a/tiles/N4-22-awesome.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-22.svg b/tiles/N4-22.svg new file mode 100644 index 00000000..6441eae2 --- /dev/null +++ b/tiles/N4-22.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-31-awesome.svg b/tiles/N4-31-awesome.svg deleted file mode 100644 index e4c15534..00000000 --- a/tiles/N4-31-awesome.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-31.svg b/tiles/N4-31.svg new file mode 100644 index 00000000..e4c15534 --- /dev/null +++ b/tiles/N4-31.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N5-1q2-awesome.svg b/tiles/N5-1q2-awesome.svg deleted file mode 100644 index ba6802ed..00000000 --- a/tiles/N5-1q2-awesome.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N5-1q2.svg b/tiles/N5-1q2.svg new file mode 100644 index 00000000..ba6802ed --- /dev/null +++ b/tiles/N5-1q2.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N6-1.svg b/tiles/N6-1.svg new file mode 100644 index 00000000..922e9ed7 --- /dev/null +++ b/tiles/N6-1.svg @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/tiles/N6-6c.svg b/tiles/N6-6c.svg index 37a75269..2e9aafef 100644 --- a/tiles/N6-6c.svg +++ b/tiles/N6-6c.svg @@ -1,7 +1,35 @@ - - - - diff --git a/tiles/P4-1.svg b/tiles/P4-1.svg index 6dec023d..8d1d072e 100644 --- a/tiles/P4-1.svg +++ b/tiles/P4-1.svg @@ -1,7 +1,35 @@ - - - - diff --git a/tiles/P4-15.svg b/tiles/P4-15.svg index d1eb1c75..f809c7f9 100644 --- a/tiles/P4-15.svg +++ b/tiles/P4-15.svg @@ -1,7 +1,35 @@ - - - - diff --git a/tiles/P4-19.svg b/tiles/P4-19.svg index 59bc9daf..973cda8b 100644 --- a/tiles/P4-19.svg +++ b/tiles/P4-19.svg @@ -1,7 +1,35 @@ - - - - diff --git a/tiles/P4-42.svg b/tiles/P4-42.svg deleted file mode 100644 index c05558cb..00000000 --- a/tiles/P4-42.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P5-10_11-awesome.svg b/tiles/P5-10_11-awesome.svg deleted file mode 100644 index 8b578c95..00000000 --- a/tiles/P5-10_11-awesome.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P5-10_11.svg b/tiles/P5-10_11.svg new file mode 100644 index 00000000..8b578c95 --- /dev/null +++ b/tiles/P5-10_11.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/diamond_square.svg b/tiles/diamond_square.svg index 50a0c680..e6e70cbc 100644 --- a/tiles/diamond_square.svg +++ b/tiles/diamond_square.svg @@ -1,26 +1,128 @@ - - - - + + + + + + + + + - + image/svg+xml - + - - - - - - - - - - - - - + + + + + + + + + + + + + - \ No newline at end of file + diff --git a/tiles/hex_N6-1.svg b/tiles/hex_N6-1.svg deleted file mode 100644 index 922e9ed7..00000000 --- a/tiles/hex_N6-1.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/tiles/tile_test4.svg b/tiles/tile_test4.svg deleted file mode 100644 index 4eb35d1a..00000000 --- a/tiles/tile_test4.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/tiles/weird_one.svg b/tiles/weird_one.svg index edd09138..768d3ebe 100644 --- a/tiles/weird_one.svg +++ b/tiles/weird_one.svg @@ -1,7 +1,35 @@ - - - - -- cgit v1.2.3 From 3b1a161532fb641f904c8697ac3597ecef0b4110 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sun, 12 Feb 2023 23:09:42 -0500 Subject: sort tiles by name --- lib/elements/fill_stitch.py | 2 +- lib/tiles.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index a0d89915..40e720ae 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -161,7 +161,7 @@ class FillStitch(EmbroideryElement): @property @param('meander_pattern', _('Meander Pattern'), type='select', default=0, - options=[tile.name for tile in tiles.all_tiles()], select_items=[('fill_method', 4)], sort_index=3) + options=sorted(tile.name for tile in tiles.all_tiles()), select_items=[('fill_method', 4)], sort_index=3) def meander_pattern(self): return self.get_param('meander_pattern', None) diff --git a/lib/tiles.py b/lib/tiles.py index 7f46a5aa..e40692e8 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -27,6 +27,9 @@ class Tile: self.shift0 = None self.shift1 = None + def __lt__(self, other): + return self.name < other.name + def __repr__(self): return f"Tile({self.name}, {self.shift0}, {self.shift1})" -- cgit v1.2.3 From 3da70348b03d8d40ef71d2f515bb9f179977e693 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Thu, 16 Feb 2023 22:53:51 -0500 Subject: change wording of smoothness tooltip --- lib/elements/fill_stitch.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 40e720ae..9b36497e 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -143,8 +143,9 @@ class FillStitch(EmbroideryElement): @property @param('smoothness_mm', _('Smoothness'), tooltip=_( - 'Smooth the stitch path. Smoothness limits approximately how far the smoothed stitch path ' + - 'is allowed to deviate from the original path. Hint: a lower stitch tolerance may be needed too.' + 'Smooth the stitch path. Smoothness limits how far the smoothed stitch path ' + + 'is allowed to deviate from the original path. Try low numbers like 0.2. ' + + 'Hint: a lower running stitch tolerance may be needed too.' ), type='integer', unit='mm', -- cgit v1.2.3 From 9ccf8b9b7780b997c1f801a87dafd99f86f048a1 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Fri, 17 Feb 2023 21:13:13 -0500 Subject: better smoothing algorithm --- lib/stitches/contour_fill.py | 2 + lib/stitches/meander_fill.py | 2 +- lib/utils/geometry.py | 96 ++------------------------------------------ lib/utils/smoothing.py | 84 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 91 insertions(+), 93 deletions(-) create mode 100644 lib/utils/smoothing.py diff --git a/lib/stitches/contour_fill.py b/lib/stitches/contour_fill.py index 8e47518f..f5f2a3ee 100644 --- a/lib/stitches/contour_fill.py +++ b/lib/stitches/contour_fill.py @@ -12,9 +12,11 @@ from shapely.validation import make_valid from ..stitch_plan import Stitch from ..utils import DotDict +from ..utils.clamp_path import clamp_path_to_polygon from ..utils.geometry import (cut, ensure_geometry_collection, ensure_multi_polygon, reverse_line_string, roll_linear_ring) +from ..utils.smoothing import smooth_path from ..utils.threading import check_stop_flag from .running_stitch import running_stitch diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py index ca3b7d69..2cd235fb 100644 --- a/lib/stitches/meander_fill.py +++ b/lib/stitches/meander_fill.py @@ -6,7 +6,7 @@ from .running_stitch import running_stitch from .. import tiles from ..debug import debug from ..stitch_plan import Stitch -from ..utils import smooth_path +from ..utils.smoothing import smooth_path from ..utils.geometry import Point as InkStitchPoint, ensure_geometry_collection from ..utils.list import poprandom from ..utils.prng import iter_uniform_floats diff --git a/lib/utils/geometry.py b/lib/utils/geometry.py index e7fd5b76..8f34c467 100644 --- a/lib/utils/geometry.py +++ b/lib/utils/geometry.py @@ -7,8 +7,6 @@ import math from shapely.geometry import LineString, LinearRing, MultiLineString, Polygon, MultiPolygon, MultiPoint, GeometryCollection from shapely.geometry import Point as ShapelyPoint -from scipy.interpolate import splprep, splev -import numpy as np def cut(line, distance, normalized=False): @@ -149,96 +147,6 @@ def cut_path(points, length): return [Point(*point) for point in subpath.coords] -def _remove_duplicate_coordinates(coords_array): - """Remove consecutive duplicate points from an array. - - Arguments: - coords_array -- numpy.array - - Returns: - a numpy.array of coordinates, minus consecutive duplicates - """ - - differences = np.diff(coords_array, axis=0) - zero_differences = np.isclose(differences, 0) - keepers = np.r_[True, np.any(zero_differences == False, axis=1)] # noqa: E712 - - return coords_array[keepers] - - -def _add_extra_points(coords): - """Add points at the start and end of the path. - - The spline-based smoothing in smooth_path sometimes makes a wild deviation at the - start or end. Adding 3 extra points almost identical to the start and end points - seems to avoid this. - """ - - direction = coords[1] - coords[0] - amount = direction * 0.001 - - start_points = [coords[0], coords[0] + amount, coords[0] + amount * 2, coords[0] + amount * 3] - - direction = coords[-2] - coords[-1] - amount = direction * 0.001 - - end_points = [coords[-1] + amount * 3, coords[-1] + amount * 2, coords[-1] + amount, coords[-1]] - - return np.concatenate((start_points, coords[1:-1], end_points), axis=0) - - -def smooth_path(path, smoothness=1.0): - """Smooth a path of coordinates. - - Arguments: - path -- an iterable of coordinate tuples or Points - smoothness -- float, how much smoothing to apply. Bigger numbers - smooth more. - - Returns: - A list of Points. - """ - - if smoothness == 0: - # s of exactly zero seems to indicate a default level of smoothing - # in splprep, so we'll just exit instead. - return path - - # splprep blows up on duplicated consecutive points with "Invalid inputs" - coords = _remove_duplicate_coordinates(np.array(path)) - num_points = len(coords) - - if num_points <= 3: - # splprep throws an error unless num_points > k - return path - - # s is explained in this issue: https://github.com/scipy/scipy/issues/11916 - # the smoothness parameter limits how much the smoothed path can deviate - # from the original path. The standard deviation of the distance between - # the smoothed path and the original path is equal to the smoothness. - # In practical terms, if smoothness is 1mm, then the smoothed path can be - # up to 1mm away from the original path. - s = num_points * (smoothness ** 2) - - coords = _add_extra_points(coords) - - # .T transposes the array (for some reason splprep expects - # [[x1, x2, ...], [y1, y2, ...]] - tck, fp, ier, msg = splprep(coords.T, s=s, k=3, nest=-1, full_output=1) - if ier > 0: - from ..debug import debug - debug.log(f"error {ier} smoothing path: {msg}") - return path - - # Evaluate the spline curve at many points along its length to produce the - # smoothed point list. 2 * num_points seems to be a good number, but it - # does produce a lot of points. - smoothed_x_values, smoothed_y_values = splev(np.linspace(0, 1, num_points * 2), tck[0]) - coords = np.array([smoothed_x_values, smoothed_y_values]).T - - return [Point(x, y) for x, y in coords] - - class Point: def __init__(self, x: float, y: float): self.x = x @@ -333,3 +241,7 @@ class Point: def line_string_to_point_list(line_string): return [Point(*point) for point in line_string.coords] + + +def coordinate_list_to_point_list(coordinate_list): + return [Point.from_tuple(coords) for coords in coordinate_list] diff --git a/lib/utils/smoothing.py b/lib/utils/smoothing.py new file mode 100644 index 00000000..9d43a9f1 --- /dev/null +++ b/lib/utils/smoothing.py @@ -0,0 +1,84 @@ +import numpy as np +from scipy.interpolate import splprep, splev + +from .geometry import Point, coordinate_list_to_point_list +from ..stitches.running_stitch import running_stitch +from ..debug import debug + + +def _remove_duplicate_coordinates(coords_array): + """Remove consecutive duplicate points from an array. + + Arguments: + coords_array -- numpy.array + + Returns: + a numpy.array of coordinates, minus consecutive duplicates + """ + + differences = np.diff(coords_array, axis=0) + zero_differences = np.isclose(differences, 0) + keepers = np.r_[True, np.any(zero_differences == False, axis=1)] # noqa: E712 + + return coords_array[keepers] + + +@debug.time +def smooth_path(path, smoothness=1.0): + """Smooth a path of coordinates. + + Arguments: + path -- an iterable of coordinate tuples or Points + smoothness -- float, how much smoothing to apply. Bigger numbers + smooth more. + + Returns: + A list of Points. + """ + from ..debug import debug + + if smoothness == 0: + # s of exactly zero seems to indicate a default level of smoothing + # in splprep, so we'll just exit instead. + return path + + # Smoothing seems to look nicer if the line segments in the path are mostly + # similar in length. If we have some especially long segments, then the + # smoothed path sometimes diverges more from the original path as the + # spline curve struggles to fit the path. This can be especially bad at + # the start and end. + # + # Fortunately, we can convert the path to segments that are mostly the same + # length by using the running stitch algorithm. + path = running_stitch(coordinate_list_to_point_list(path), 5 * smoothness, smoothness / 2) + + # splprep blows up on duplicated consecutive points with "Invalid inputs" + coords = _remove_duplicate_coordinates(np.array(path)) + num_points = len(coords) + + if num_points <= 3: + # splprep throws an error unless num_points > k + return path + + # s is explained in this issue: https://github.com/scipy/scipy/issues/11916 + # the smoothness parameter limits how much the smoothed path can deviate + # from the original path. The standard deviation of the distance between + # the smoothed path and the original path is equal to the smoothness. + # In practical terms, if smoothness is 1mm, then the smoothed path can be + # up to 1mm away from the original path. + s = num_points * (smoothness ** 2) + + # .T transposes the array (for some reason splprep expects + # [[x1, x2, ...], [y1, y2, ...]] + tck, fp, ier, msg = splprep(coords.T, s=s, k=3, nest=-1, full_output=1) + if ier > 0: + debug.log(f"error {ier} smoothing path: {msg}") + return path + + # Evaluate the spline curve at many points along its length to produce the + # smoothed point list. 2 * num_points seems to be a good number, but it + # does produce a lot of points. + smoothed_x_values, smoothed_y_values = splev(np.linspace(0, 1, int(num_points * 2)), tck[0]) + coords = np.array([smoothed_x_values, smoothed_y_values]).T + + return [Point(x, y) for x, y in coords] -- cgit v1.2.3 From be699bf89255d98729b1d10f426acf8e852709b4 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 16:43:18 -0500 Subject: fix params for meander --- lib/elements/fill_stitch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 9b36497e..34588ba0 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -223,6 +223,7 @@ class FillStitch(EmbroideryElement): unit='mm', sort_index=6, type='float', + select_items=[('fill_method', 0), ('fill_method', 1), ('fill_method', 2), ('fill_method', 3)], default=0.25) def row_spacing(self): return max(self.get_float_param("row_spacing_mm", 0.25), 0.1 * PIXELS_PER_MM) @@ -239,6 +240,7 @@ class FillStitch(EmbroideryElement): unit='mm', sort_index=6, type='float', + select_items=[('fill_method', 0), ('fill_method', 1), ('fill_method', 2), ('fill_method', 3)], default=3.0) def max_stitch_length(self): return max(self.get_float_param("max_stitch_length_mm", 3.0), 0.1 * PIXELS_PER_MM) @@ -404,7 +406,7 @@ class FillStitch(EmbroideryElement): @property @param('running_stitch_length_mm', - _('Running stitch length (traversal between sections)'), + _('Running stitch length'), tooltip=_( 'Length of stitches around the outline of the fill region used when moving from section to section. Also used for meander fill.'), unit='mm', -- cgit v1.2.3 From 7fa3fec5346a4c87ff1f95dca94cf771455d8cb0 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 16:48:32 -0500 Subject: fix deprecation warning --- lib/utils/clamp_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/clamp_path.py b/lib/utils/clamp_path.py index acf6f675..e5ef78d8 100644 --- a/lib/utils/clamp_path.py +++ b/lib/utils/clamp_path.py @@ -100,7 +100,7 @@ def clamp_path_to_polygon(path, polygon): if not exit_point.intersects(entry_point): # Now break the border into pieces using those points. border = find_border(polygon, exit_point) - border_pieces = border.difference(MultiPolygon((entry_point, exit_point))) + border_pieces = border.difference(MultiPolygon((entry_point, exit_point))).geoms border_pieces = fix_starting_point(border_pieces) # Pick the shortest way to get from the exiting to the -- cgit v1.2.3 From ae43fb96830d9f747f890d1985a9c5ed4741f893 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 17:44:42 -0500 Subject: avoid NetworkXNoPath error by connecting graph --- lib/stitches/meander_fill.py | 32 ++++++++++++++++++++++++++------ lib/tiles.py | 11 ++++++----- 2 files changed, 32 insertions(+), 11 deletions(-) diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py index 2cd235fb..6278b0ad 100644 --- a/lib/stitches/meander_fill.py +++ b/lib/stitches/meander_fill.py @@ -1,3 +1,5 @@ +from itertools import combinations + import networkx as nx from shapely.geometry import MultiPoint, Point from shapely.ops import nearest_points @@ -5,11 +7,11 @@ from shapely.ops import nearest_points from .running_stitch import running_stitch from .. import tiles from ..debug import debug -from ..stitch_plan import Stitch -from ..utils.smoothing import smooth_path +from ..utils.clamp_path import clamp_path_to_polygon from ..utils.geometry import Point as InkStitchPoint, ensure_geometry_collection from ..utils.list import poprandom from ..utils.prng import iter_uniform_floats +from ..utils.smoothing import smooth_path from ..utils.threading import check_stop_flag @@ -24,11 +26,11 @@ def meander_fill(fill, shape, shape_index, starting_point, ending_point): debug.log_line_strings(lambda: ensure_geometry_collection(shape.boundary).geoms, 'Meander shape') graph = tile.to_graph(shape, fill.meander_scale) debug.log_graph(graph, 'Meander graph') - debug.log(lambda: f"graph connected? {nx.is_connected(graph)}") + ensure_connected(graph) start, end = find_starting_and_ending_nodes(graph, shape, starting_point, ending_point) rng = iter_uniform_floats(fill.random_seed, 'meander-fill', shape_index) - return post_process(generate_meander_path(graph, start, end, rng), fill) + return post_process(generate_meander_path(graph, start, end, rng), shape, fill) def get_tile(tile_name): @@ -40,6 +42,24 @@ def get_tile(tile_name): return None +def ensure_connected(graph): + """If graph is unconnected, add edges to make it connected.""" + + # TODO: combine this with possible_jumps() in lib/stitches/utils/autoroute.py + possible_connections = [] + for component1, component2 in combinations(nx.connected_components(graph), 2): + points1 = MultiPoint([Point(node) for node in component1]) + points2 = MultiPoint([Point(node) for node in component2]) + + start_point, end_point = nearest_points(points1, points2) + possible_connections.append(((start_point.x, start_point.y), (end_point.x, end_point.y), start_point.distance(end_point))) + + if possible_connections: + for start, end in nx.k_edge_augmentation(graph, 1, avail=possible_connections): + check_stop_flag() + graph.add_edge(start, end) + + def find_starting_and_ending_nodes(graph, shape, starting_point, ending_point): if starting_point is None: starting_point = shape.exterior.coords[0] @@ -137,14 +157,14 @@ def replace_edge_pair(path, edge1, edge2, graph, graph_nodes): @debug.time -def post_process(points, fill): +def post_process(points, shape, fill): debug.log(f"smoothness: {fill.smoothness}") # debug.log_line_string(LineString(points), "pre-smoothed", "#FF0000") smoothed_points = smooth_path(points, fill.smoothness) smoothed_points = [InkStitchPoint.from_tuple(point) for point in smoothed_points] stitches = running_stitch(smoothed_points, fill.running_stitch_length, fill.running_stitch_tolerance) - stitches = [Stitch(point) for point in stitches] + stitches = clamp_path_to_polygon(stitches, shape) return stitches diff --git a/lib/tiles.py b/lib/tiles.py index e40692e8..d1e79071 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -3,7 +3,7 @@ from math import ceil, floor import inkex import lxml -from networkx import Graph +import networkx as nx from shapely.geometry import LineString from shapely.prepared import prep @@ -127,7 +127,7 @@ class Tile: return self._generate_graph(prepared_shape, shape_center, shape_diagonal) def _generate_graph(self, shape, shape_center, shape_diagonal): - graph = Graph() + graph = nx.Graph() tiles0 = ceil(shape_diagonal / self.shift0.length()) + 2 tiles1 = ceil(shape_diagonal / self.shift1.length()) + 2 for repeat0 in range(floor(-tiles0 / 2), ceil(tiles0 / 2)): @@ -147,11 +147,12 @@ class Tile: return graph def _remove_dead_ends(self, graph): + graph.remove_edges_from(nx.selfloop_edges(graph)) while True: - nodes_with_degree_1 = [node for node, degree in graph.degree() if degree == 1] + dead_end_nodes = [node for node, degree in graph.degree() if degree <= 1] - if nodes_with_degree_1: - graph.remove_nodes_from(nodes_with_degree_1) + if dead_end_nodes: + graph.remove_nodes_from(dead_end_nodes) else: return -- cgit v1.2.3 From 0bc9dc31507f0de87075dd5b60a55d667f772c52 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 21:39:47 -0500 Subject: undo my changes to params extension --- lib/extensions/params.py | 29 +++++++---------------------- 1 file changed, 7 insertions(+), 22 deletions(-) diff --git a/lib/extensions/params.py b/lib/extensions/params.py index f0cd1405..1262ceb6 100644 --- a/lib/extensions/params.py +++ b/lib/extensions/params.py @@ -52,7 +52,6 @@ class ParamsTab(ScrolledPanel): self.dict_of_choices = {} self.paired_tab = None self.disable_notify_pair = False - self.change_notify_timer = None toggles = [param for param in self.params if param.type == 'toggle'] @@ -191,13 +190,8 @@ class ParamsTab(ScrolledPanel): try: values[name] = input.GetValue() except AttributeError: - param = self.dict_of_choices[name]['param'] - if param.type == 'dropdown': - # dropdown - values[name] = input.GetSelection() - elif param.type == 'select': - selection = input.GetSelection() - values[name] = param.options[selection] + # dropdown + values[name] = input.GetSelection() return values @@ -214,6 +208,8 @@ class ParamsTab(ScrolledPanel): self.enable_change_indicator('random_seed') event.Skip() + if self.on_change_hook: + self.on_change_hook(self) def apply(self): values = self.get_values() @@ -233,10 +229,7 @@ class ParamsTab(ScrolledPanel): event.Skip() if self.on_change_hook: - if self.change_notify_timer is None or self.change_notify_timer.HasRun(): - self.change_notify_timer = wx.CallLater(1000, self.on_change_hook, self) - else: - self.change_notify_timer.Start() + self.on_change_hook(self) def load_preset(self, preset): preset_data = preset.get(self.name, {}) @@ -375,17 +368,9 @@ class ParamsTab(ScrolledPanel): input.SetValue(param.values[0]) input.Bind(wx.EVT_CHECKBOX, self.changed) - elif param.type in ('dropdown', 'select'): + elif param.type == 'dropdown': input = wx.Choice(self, wx.ID_ANY, choices=param.options) - - if param.type == 'dropdown': - input.SetSelection(int(param.values[0])) - else: - try: - input.SetSelection(param.options.index(param.values[0])) - except ValueError: - input.SetSelection(param.default) - + input.SetSelection(int(param.values[0])) input.Bind(wx.EVT_CHOICE, self.changed) input.Bind(wx.EVT_CHOICE, self.update_choice_state) self.dict_of_choices[param.name] = { -- cgit v1.2.3 From 91082414dfbb12ffea2f75b3715abe3e8d2bdd38 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 21:42:06 -0500 Subject: cherry-pick @kaalleen's combo box param type --- lib/extensions/params.py | 63 +++++++++++++++++++++++++++++++++++++----------- 1 file changed, 49 insertions(+), 14 deletions(-) diff --git a/lib/extensions/params.py b/lib/extensions/params.py index 1262ceb6..e342c592 100644 --- a/lib/extensions/params.py +++ b/lib/extensions/params.py @@ -17,7 +17,7 @@ import wx from wx.lib.scrolledpanel import ScrolledPanel from ..commands import is_command, is_command_symbol -from ..elements import (FillStitch, Clone, EmbroideryElement, Polyline, +from ..elements import (Clone, EmbroideryElement, FillStitch, Polyline, SatinColumn, Stroke) from ..elements.clone import is_clone from ..gui import PresetsPanel, SimulatorPreview, WarningPanel @@ -129,9 +129,12 @@ class ParamsTab(ScrolledPanel): if event: event.Skip() - def update_choice_state(self, event=None): + def update_choice_state(self, event=None, combo=False): input = event.GetEventObject() - selection = input.GetSelection() + if combo: + selection = input.GetClientData(input.GetSelection()).id + else: + selection = input.GetSelection() param = self.inputs_to_params[input] @@ -143,6 +146,15 @@ class ParamsTab(ScrolledPanel): if event: event.Skip() + def update_combo_state(self, event=None): + self.update_choice_state(event, True) + + def get_combo_value_index(self, param, options): + for option in options: + if option.id == param: + return options.index(option) + return 0 + def pair_changed(self, value): new_value = not value @@ -187,11 +199,15 @@ class ParamsTab(ScrolledPanel): for name, input in self.param_inputs.items(): if input in self.changed_inputs and input != self.toggle_checkbox: - try: - values[name] = input.GetValue() - except AttributeError: - # dropdown + # there are two types of combo boxes: + # 1. multiple values for the same param on selected elements - 2. param type + # multiple values will be handled with the GetValue() method + if name in self.dict_of_choices and self.dict_of_choices[name]['param'].type == 'combo': + values[name] = input.GetClientData(input.GetSelection()).id + elif isinstance(input, wx.Choice): values[name] = input.GetSelection() + else: + values[name] = input.GetValue() return values @@ -234,12 +250,16 @@ class ParamsTab(ScrolledPanel): def load_preset(self, preset): preset_data = preset.get(self.name, {}) + # print(self.param_inputs, '\n\n', preset_data.items(), file=sys.stderr) + for name, value in preset_data.items(): if name in self.param_inputs: - try: - self.param_inputs[name].SetValue(value) - except AttributeError: + if name in self.dict_of_choices and self.dict_of_choices[name]['param'].type == 'combo': + self.param_inputs[name].SetSelection(self.get_combo_value_index(value, self.dict_of_choices[name]["param"].options)) + elif isinstance(self.param_inputs[name], wx.Choice): self.param_inputs[name].SetSelection(int(value)) + else: + self.param_inputs[name].SetValue(value) self.changed_inputs.add(self.param_inputs[name]) self.update_toggle_state() @@ -299,16 +319,21 @@ class ParamsTab(ScrolledPanel): def update_choice_widgets(self, choice_tuple=None): if choice_tuple is None: # update all choices for choice in self.dict_of_choices.values(): - self.update_choice_widgets( - (choice["param"].name, choice["widget"].GetSelection())) + if choice["param"].type == "combo": + self.update_choice_widgets((choice["param"].name, choice["widget"].GetClientData(choice["widget"].GetSelection()).id)) + else: + self.update_choice_widgets((choice["param"].name, choice["widget"].GetSelection())) else: choice = self.dict_of_choices[choice_tuple[0]] last_selection = choice["last_initialized_choice"] - current_selection = choice["widget"].GetSelection() + if choice["param"].type == "combo": + current_selection = choice["widget"].GetClientData(choice["widget"].GetSelection()).id + else: + current_selection = choice["widget"].GetSelection() + if last_selection != -1 and last_selection != current_selection: # Hide the old widgets for widget in self.choice_widgets[(choice["param"].name, last_selection)]: widget.Hide() - # self.settings_grid.Detach(widget) for widgets in grouper(self.choice_widgets[choice_tuple], 4): widgets[0].Show(True) @@ -375,6 +400,16 @@ class ParamsTab(ScrolledPanel): input.Bind(wx.EVT_CHOICE, self.update_choice_state) self.dict_of_choices[param.name] = { "param": param, "widget": input, "last_initialized_choice": 1} + elif param.type == 'combo': + input = wx.ComboBox(self, wx.ID_ANY, choices=[], style=wx.CB_READONLY) + for option in param.options: + input.Append(option.name, option) + value = self.get_combo_value_index(param.values[0], param.options) + input.SetSelection(value) + input.Bind(wx.EVT_COMBOBOX, self.changed) + input.Bind(wx.EVT_COMBOBOX, self.update_combo_state) + self.dict_of_choices[param.name] = { + "param": param, "widget": input, "last_initialized_choice": 1} elif len(param.values) > 1: input = wx.ComboBox(self, wx.ID_ANY, choices=sorted( str(value) for value in param.values), style=wx.CB_DROPDOWN) -- cgit v1.2.3 From 315866de9ade249cab8db81d880d255f33f851f3 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 21:51:22 -0500 Subject: use new combo param type --- lib/elements/fill_stitch.py | 4 ++-- lib/tiles.py | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 34588ba0..9d86aa36 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -161,8 +161,8 @@ class FillStitch(EmbroideryElement): return self.get_boolean_param('clockwise', True) @property - @param('meander_pattern', _('Meander Pattern'), type='select', default=0, - options=sorted(tile.name for tile in tiles.all_tiles()), select_items=[('fill_method', 4)], sort_index=3) + @param('meander_pattern', _('Meander Pattern'), type='combo', default=0, + options=sorted(tiles.all_tiles()), select_items=[('fill_method', 4)], sort_index=3) def meander_pattern(self): return self.get_param('meander_pattern', None) diff --git a/lib/tiles.py b/lib/tiles.py index d1e79071..fce4d26f 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -20,7 +20,8 @@ class Tile: def _load_tile(self, tile_path): self.tile_svg = inkex.load_svg(tile_path) self.tile_path = tile_path - self.name = self._get_name(tile_path) + self.id = self._get_name(tile_path) + self.name = self.id self.tile = None self.width = None self.height = None -- cgit v1.2.3 From d278f6a54a2a316e70271ad04bd206e49a93fa5f Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Sat, 18 Feb 2023 22:24:58 -0500 Subject: add tiles json and internationalization --- Makefile | 3 +- bin/inkstitch-tiles-gettext | 21 +++++ lib/stitches/meander_fill.py | 6 +- lib/tiles.py | 29 ++++-- tiles/N3-11a.svg | 119 ------------------------ tiles/N3-11a/tile.json | 5 + tiles/N3-11a/tile.svg | 119 ++++++++++++++++++++++++ tiles/N3-12.svg | 31 ------- tiles/N3-12/tile.json | 5 + tiles/N3-12/tile.svg | 31 +++++++ tiles/N3-16a.svg | 31 ------- tiles/N3-16a/tile.json | 5 + tiles/N3-16a/tile.svg | 31 +++++++ tiles/N3-17.svg | 24 ----- tiles/N3-17/tile.json | 5 + tiles/N3-17/tile.svg | 24 +++++ tiles/N3-18-modified.svg | 36 -------- tiles/N3-18-modified/tile.json | 5 + tiles/N3-18-modified/tile.svg | 36 ++++++++ tiles/N3-18.svg | 36 -------- tiles/N3-18/tile.json | 5 + tiles/N3-18/tile.svg | 36 ++++++++ tiles/N3-20.svg | 38 -------- tiles/N3-20/tile.json | 5 + tiles/N3-20/tile.svg | 38 ++++++++ tiles/N3-23b.svg | 39 -------- tiles/N3-23b/tile.json | 5 + tiles/N3-23b/tile.svg | 39 ++++++++ tiles/N3-25c.svg | 39 -------- tiles/N3-25c/tile.json | 5 + tiles/N3-25c/tile.svg | 39 ++++++++ tiles/N3-26b.svg | 40 -------- tiles/N3-26b/tile.json | 5 + tiles/N3-26b/tile.svg | 40 ++++++++ tiles/N3-27.svg | 39 -------- tiles/N3-27/tile.json | 5 + tiles/N3-27/tile.svg | 39 ++++++++ tiles/N3-30a.svg | 55 ----------- tiles/N3-30a/tile.json | 5 + tiles/N3-30a/tile.svg | 55 +++++++++++ tiles/N3-51b.svg | 144 ----------------------------- tiles/N3-51b/tile.json | 5 + tiles/N3-51b/tile.svg | 144 +++++++++++++++++++++++++++++ tiles/N3-57f-modified.svg | 89 ------------------ tiles/N3-57f-modified/tile.json | 5 + tiles/N3-57f-modified/tile.svg | 89 ++++++++++++++++++ tiles/N3-58b.svg | 51 ----------- tiles/N3-58b/tile.json | 5 + tiles/N3-58b/tile.svg | 51 +++++++++++ tiles/N3-6.svg | 26 ------ tiles/N3-6/tile.json | 5 + tiles/N3-6/tile.svg | 26 ++++++ tiles/N3-7.svg | 31 ------- tiles/N3-7/tile.json | 5 + tiles/N3-7/tile.svg | 31 +++++++ tiles/N3-8a-modified.svg | 20 ---- tiles/N3-8a-modified/tile.json | 5 + tiles/N3-8a-modified/tile.svg | 20 ++++ tiles/N3-8a.svg | 22 ----- tiles/N3-8a/tile.json | 5 + tiles/N3-8a/tile.svg | 22 +++++ tiles/N3-8b.svg | 31 ------- tiles/N3-8b/tile.json | 5 + tiles/N3-8b/tile.svg | 31 +++++++ tiles/N4-13b.svg | 38 -------- tiles/N4-13b/tile.json | 5 + tiles/N4-13b/tile.svg | 38 ++++++++ tiles/N4-13c.svg | 35 ------- tiles/N4-13c/tile.json | 5 + tiles/N4-13c/tile.svg | 35 +++++++ tiles/N4-13d.svg | 53 ----------- tiles/N4-13d/tile.json | 5 + tiles/N4-13d/tile.svg | 53 +++++++++++ tiles/N4-13e.svg | 44 --------- tiles/N4-13e/tile.json | 5 + tiles/N4-13e/tile.svg | 44 +++++++++ tiles/N4-13f.svg | 39 -------- tiles/N4-13f/tile.json | 5 + tiles/N4-13f/tile.svg | 39 ++++++++ tiles/N4-16a.svg | 48 ---------- tiles/N4-16a/tile.json | 5 + tiles/N4-16a/tile.svg | 48 ++++++++++ tiles/N4-19.svg | 43 --------- tiles/N4-19/tile.json | 5 + tiles/N4-19/tile.svg | 43 +++++++++ tiles/N4-20.svg | 55 ----------- tiles/N4-20/tile.json | 5 + tiles/N4-20/tile.svg | 55 +++++++++++ tiles/N4-21c.svg | 39 -------- tiles/N4-21c/tile.json | 5 + tiles/N4-21c/tile.svg | 39 ++++++++ tiles/N4-22.svg | 41 --------- tiles/N4-22/tile.json | 5 + tiles/N4-22/tile.svg | 41 +++++++++ tiles/N4-23a.svg | 57 ------------ tiles/N4-23a/tile.json | 5 + tiles/N4-23a/tile.svg | 57 ++++++++++++ tiles/N4-23c.svg | 41 --------- tiles/N4-23c/tile.json | 5 + tiles/N4-23c/tile.svg | 41 +++++++++ tiles/N4-27.svg | 48 ---------- tiles/N4-27/tile.json | 5 + tiles/N4-27/tile.svg | 48 ++++++++++ tiles/N4-29e.svg | 34 ------- tiles/N4-29e/tile.json | 5 + tiles/N4-29e/tile.svg | 34 +++++++ tiles/N4-29f.svg | 41 --------- tiles/N4-29f/tile.json | 5 + tiles/N4-29f/tile.svg | 41 +++++++++ tiles/N4-31.svg | 30 ------ tiles/N4-31/tile.json | 5 + tiles/N4-31/tile.svg | 30 ++++++ tiles/N4-38.svg | 60 ------------ tiles/N4-38/tile.json | 5 + tiles/N4-38/tile.svg | 60 ++++++++++++ tiles/N4-42e.svg | 35 ------- tiles/N4-42e/tile.json | 5 + tiles/N4-42e/tile.svg | 35 +++++++ tiles/N4-44.svg | 45 --------- tiles/N4-44/tile.json | 5 + tiles/N4-44/tile.svg | 45 +++++++++ tiles/N4-52.svg | 45 --------- tiles/N4-52/tile.json | 5 + tiles/N4-52/tile.svg | 45 +++++++++ tiles/N4-54d.svg | 44 --------- tiles/N4-54d/tile.json | 5 + tiles/N4-54d/tile.svg | 44 +++++++++ tiles/N4-5a-2.svg | 29 ------ tiles/N4-5a-2/tile.json | 5 + tiles/N4-5a-2/tile.svg | 29 ++++++ tiles/N4-5a.svg | 40 -------- tiles/N4-5a/tile.json | 5 + tiles/N4-5a/tile.svg | 40 ++++++++ tiles/N4-82.svg | 36 -------- tiles/N4-82/tile.json | 5 + tiles/N4-82/tile.svg | 36 ++++++++ tiles/N4-85d.svg | 49 ---------- tiles/N4-85d/tile.json | 5 + tiles/N4-85d/tile.svg | 49 ++++++++++ tiles/N5-1e1.svg | 39 -------- tiles/N5-1e1/tile.json | 5 + tiles/N5-1e1/tile.svg | 39 ++++++++ tiles/N5-1q2.svg | 30 ------ tiles/N5-1q2/tile.json | 5 + tiles/N5-1q2/tile.svg | 30 ++++++ tiles/N5-1t.svg | 28 ------ tiles/N5-1t/tile.json | 5 + tiles/N5-1t/tile.svg | 28 ++++++ tiles/N6-1.svg | 16 ---- tiles/N6-1/tile.json | 5 + tiles/N6-1/tile.svg | 16 ++++ tiles/N6-2.svg | 47 ---------- tiles/N6-2/tile.json | 5 + tiles/N6-2/tile.svg | 47 ++++++++++ tiles/N6-5b.svg | 60 ------------ tiles/N6-5b/tile.json | 5 + tiles/N6-5b/tile.svg | 60 ++++++++++++ tiles/N6-6a.svg | 60 ------------ tiles/N6-6a/tile.json | 5 + tiles/N6-6a/tile.svg | 60 ++++++++++++ tiles/N6-6c.svg | 197 ---------------------------------------- tiles/N6-6c/tile.json | 5 + tiles/N6-6c/tile.svg | 197 ++++++++++++++++++++++++++++++++++++++++ tiles/NC5-11a.svg | 35 ------- tiles/NC5-11a/tile.json | 5 + tiles/NC5-11a/tile.svg | 35 +++++++ tiles/NC5-20a.svg | 31 ------- tiles/NC5-20a/tile.json | 5 + tiles/NC5-20a/tile.svg | 31 +++++++ tiles/P3-1.svg | 26 ------ tiles/P3-1/tile.json | 5 + tiles/P3-1/tile.svg | 26 ++++++ tiles/P3-12.svg | 28 ------ tiles/P3-12/tile.json | 5 + tiles/P3-12/tile.svg | 28 ++++++ tiles/P4-1.svg | 72 --------------- tiles/P4-1/tile.json | 5 + tiles/P4-1/tile.svg | 72 +++++++++++++++ tiles/P4-10.svg | 38 -------- tiles/P4-10/tile.json | 5 + tiles/P4-10/tile.svg | 38 ++++++++ tiles/P4-15.svg | 99 -------------------- tiles/P4-15/tile.json | 5 + tiles/P4-15/tile.svg | 99 ++++++++++++++++++++ tiles/P4-19.svg | 74 --------------- tiles/P4-19/tile.json | 5 + tiles/P4-19/tile.svg | 74 +++++++++++++++ tiles/P4-23.svg | 39 -------- tiles/P4-23/tile.json | 5 + tiles/P4-23/tile.svg | 39 ++++++++ tiles/P4-24.svg | 39 -------- tiles/P4-24/tile.json | 5 + tiles/P4-24/tile.svg | 39 ++++++++ tiles/P4-25.svg | 39 -------- tiles/P4-25/tile.json | 5 + tiles/P4-25/tile.svg | 39 ++++++++ tiles/P4-43-mod.svg | 30 ------ tiles/P4-43-modified/tile.json | 5 + tiles/P4-43-modified/tile.svg | 30 ++++++ tiles/P4-43.svg | 23 ----- tiles/P4-43/tile.json | 5 + tiles/P4-43/tile.svg | 23 +++++ tiles/P4-47.svg | 26 ------ tiles/P4-47/tile.json | 5 + tiles/P4-47/tile.svg | 26 ++++++ tiles/P5-10_11.svg | 29 ------ tiles/P5-10_11/tile.json | 5 + tiles/P5-10_11/tile.svg | 29 ++++++ tiles/P5-19.svg | 31 ------- tiles/P5-19/tile.json | 5 + tiles/P5-19/tile.svg | 31 +++++++ tiles/P5-23_24.svg | 27 ------ tiles/P5-23_24/tile.json | 5 + tiles/P5-23_24/tile.svg | 27 ++++++ tiles/P5-4.svg | 26 ------ tiles/P5-4/tile.json | 5 + tiles/P5-4/tile.svg | 26 ++++++ tiles/P6-6_11.svg | 28 ------ tiles/P6-6_11/tile.json | 5 + tiles/P6-6_11/tile.svg | 28 ++++++ tiles/diamond-square/tile.json | 5 + tiles/diamond-square/tile.svg | 128 ++++++++++++++++++++++++++ tiles/diamond_square.svg | 128 -------------------------- tiles/hexagon.svg | 27 ------ tiles/hexagon/tile.json | 5 + tiles/hexagon/tile.svg | 27 ++++++ tiles/weird-one/tile.json | 5 + tiles/weird-one/tile.svg | 110 ++++++++++++++++++++++ tiles/weird_one.svg | 110 ---------------------- 229 files changed, 3912 insertions(+), 3506 deletions(-) create mode 100755 bin/inkstitch-tiles-gettext delete mode 100644 tiles/N3-11a.svg create mode 100644 tiles/N3-11a/tile.json create mode 100644 tiles/N3-11a/tile.svg delete mode 100644 tiles/N3-12.svg create mode 100644 tiles/N3-12/tile.json create mode 100644 tiles/N3-12/tile.svg delete mode 100644 tiles/N3-16a.svg create mode 100644 tiles/N3-16a/tile.json create mode 100644 tiles/N3-16a/tile.svg delete mode 100644 tiles/N3-17.svg create mode 100644 tiles/N3-17/tile.json create mode 100644 tiles/N3-17/tile.svg delete mode 100644 tiles/N3-18-modified.svg create mode 100644 tiles/N3-18-modified/tile.json create mode 100644 tiles/N3-18-modified/tile.svg delete mode 100644 tiles/N3-18.svg create mode 100644 tiles/N3-18/tile.json create mode 100644 tiles/N3-18/tile.svg delete mode 100644 tiles/N3-20.svg create mode 100644 tiles/N3-20/tile.json create mode 100644 tiles/N3-20/tile.svg delete mode 100644 tiles/N3-23b.svg create mode 100644 tiles/N3-23b/tile.json create mode 100644 tiles/N3-23b/tile.svg delete mode 100644 tiles/N3-25c.svg create mode 100644 tiles/N3-25c/tile.json create mode 100644 tiles/N3-25c/tile.svg delete mode 100644 tiles/N3-26b.svg create mode 100644 tiles/N3-26b/tile.json create mode 100644 tiles/N3-26b/tile.svg delete mode 100644 tiles/N3-27.svg create mode 100644 tiles/N3-27/tile.json create mode 100644 tiles/N3-27/tile.svg delete mode 100644 tiles/N3-30a.svg create mode 100644 tiles/N3-30a/tile.json create mode 100644 tiles/N3-30a/tile.svg delete mode 100644 tiles/N3-51b.svg create mode 100644 tiles/N3-51b/tile.json create mode 100644 tiles/N3-51b/tile.svg delete mode 100644 tiles/N3-57f-modified.svg create mode 100644 tiles/N3-57f-modified/tile.json create mode 100644 tiles/N3-57f-modified/tile.svg delete mode 100644 tiles/N3-58b.svg create mode 100644 tiles/N3-58b/tile.json create mode 100644 tiles/N3-58b/tile.svg delete mode 100644 tiles/N3-6.svg create mode 100644 tiles/N3-6/tile.json create mode 100644 tiles/N3-6/tile.svg delete mode 100644 tiles/N3-7.svg create mode 100644 tiles/N3-7/tile.json create mode 100644 tiles/N3-7/tile.svg delete mode 100644 tiles/N3-8a-modified.svg create mode 100644 tiles/N3-8a-modified/tile.json create mode 100644 tiles/N3-8a-modified/tile.svg delete mode 100644 tiles/N3-8a.svg create mode 100644 tiles/N3-8a/tile.json create mode 100644 tiles/N3-8a/tile.svg delete mode 100644 tiles/N3-8b.svg create mode 100644 tiles/N3-8b/tile.json create mode 100644 tiles/N3-8b/tile.svg delete mode 100644 tiles/N4-13b.svg create mode 100644 tiles/N4-13b/tile.json create mode 100644 tiles/N4-13b/tile.svg delete mode 100644 tiles/N4-13c.svg create mode 100644 tiles/N4-13c/tile.json create mode 100644 tiles/N4-13c/tile.svg delete mode 100644 tiles/N4-13d.svg create mode 100644 tiles/N4-13d/tile.json create mode 100644 tiles/N4-13d/tile.svg delete mode 100644 tiles/N4-13e.svg create mode 100644 tiles/N4-13e/tile.json create mode 100644 tiles/N4-13e/tile.svg delete mode 100644 tiles/N4-13f.svg create mode 100644 tiles/N4-13f/tile.json create mode 100644 tiles/N4-13f/tile.svg delete mode 100644 tiles/N4-16a.svg create mode 100644 tiles/N4-16a/tile.json create mode 100644 tiles/N4-16a/tile.svg delete mode 100644 tiles/N4-19.svg create mode 100644 tiles/N4-19/tile.json create mode 100644 tiles/N4-19/tile.svg delete mode 100644 tiles/N4-20.svg create mode 100644 tiles/N4-20/tile.json create mode 100644 tiles/N4-20/tile.svg delete mode 100644 tiles/N4-21c.svg create mode 100644 tiles/N4-21c/tile.json create mode 100644 tiles/N4-21c/tile.svg delete mode 100644 tiles/N4-22.svg create mode 100644 tiles/N4-22/tile.json create mode 100644 tiles/N4-22/tile.svg delete mode 100644 tiles/N4-23a.svg create mode 100644 tiles/N4-23a/tile.json create mode 100644 tiles/N4-23a/tile.svg delete mode 100644 tiles/N4-23c.svg create mode 100644 tiles/N4-23c/tile.json create mode 100644 tiles/N4-23c/tile.svg delete mode 100644 tiles/N4-27.svg create mode 100644 tiles/N4-27/tile.json create mode 100644 tiles/N4-27/tile.svg delete mode 100644 tiles/N4-29e.svg create mode 100644 tiles/N4-29e/tile.json create mode 100644 tiles/N4-29e/tile.svg delete mode 100644 tiles/N4-29f.svg create mode 100644 tiles/N4-29f/tile.json create mode 100644 tiles/N4-29f/tile.svg delete mode 100644 tiles/N4-31.svg create mode 100644 tiles/N4-31/tile.json create mode 100644 tiles/N4-31/tile.svg delete mode 100644 tiles/N4-38.svg create mode 100644 tiles/N4-38/tile.json create mode 100644 tiles/N4-38/tile.svg delete mode 100644 tiles/N4-42e.svg create mode 100644 tiles/N4-42e/tile.json create mode 100644 tiles/N4-42e/tile.svg delete mode 100644 tiles/N4-44.svg create mode 100644 tiles/N4-44/tile.json create mode 100644 tiles/N4-44/tile.svg delete mode 100644 tiles/N4-52.svg create mode 100644 tiles/N4-52/tile.json create mode 100644 tiles/N4-52/tile.svg delete mode 100644 tiles/N4-54d.svg create mode 100644 tiles/N4-54d/tile.json create mode 100644 tiles/N4-54d/tile.svg delete mode 100644 tiles/N4-5a-2.svg create mode 100644 tiles/N4-5a-2/tile.json create mode 100644 tiles/N4-5a-2/tile.svg delete mode 100644 tiles/N4-5a.svg create mode 100644 tiles/N4-5a/tile.json create mode 100644 tiles/N4-5a/tile.svg delete mode 100644 tiles/N4-82.svg create mode 100644 tiles/N4-82/tile.json create mode 100644 tiles/N4-82/tile.svg delete mode 100644 tiles/N4-85d.svg create mode 100644 tiles/N4-85d/tile.json create mode 100644 tiles/N4-85d/tile.svg delete mode 100644 tiles/N5-1e1.svg create mode 100644 tiles/N5-1e1/tile.json create mode 100644 tiles/N5-1e1/tile.svg delete mode 100644 tiles/N5-1q2.svg create mode 100644 tiles/N5-1q2/tile.json create mode 100644 tiles/N5-1q2/tile.svg delete mode 100644 tiles/N5-1t.svg create mode 100644 tiles/N5-1t/tile.json create mode 100644 tiles/N5-1t/tile.svg delete mode 100644 tiles/N6-1.svg create mode 100644 tiles/N6-1/tile.json create mode 100644 tiles/N6-1/tile.svg delete mode 100644 tiles/N6-2.svg create mode 100644 tiles/N6-2/tile.json create mode 100644 tiles/N6-2/tile.svg delete mode 100644 tiles/N6-5b.svg create mode 100644 tiles/N6-5b/tile.json create mode 100644 tiles/N6-5b/tile.svg delete mode 100644 tiles/N6-6a.svg create mode 100644 tiles/N6-6a/tile.json create mode 100644 tiles/N6-6a/tile.svg delete mode 100644 tiles/N6-6c.svg create mode 100644 tiles/N6-6c/tile.json create mode 100644 tiles/N6-6c/tile.svg delete mode 100644 tiles/NC5-11a.svg create mode 100644 tiles/NC5-11a/tile.json create mode 100644 tiles/NC5-11a/tile.svg delete mode 100644 tiles/NC5-20a.svg create mode 100644 tiles/NC5-20a/tile.json create mode 100644 tiles/NC5-20a/tile.svg delete mode 100644 tiles/P3-1.svg create mode 100644 tiles/P3-1/tile.json create mode 100644 tiles/P3-1/tile.svg delete mode 100644 tiles/P3-12.svg create mode 100644 tiles/P3-12/tile.json create mode 100644 tiles/P3-12/tile.svg delete mode 100644 tiles/P4-1.svg create mode 100644 tiles/P4-1/tile.json create mode 100644 tiles/P4-1/tile.svg delete mode 100644 tiles/P4-10.svg create mode 100644 tiles/P4-10/tile.json create mode 100644 tiles/P4-10/tile.svg delete mode 100644 tiles/P4-15.svg create mode 100644 tiles/P4-15/tile.json create mode 100644 tiles/P4-15/tile.svg delete mode 100644 tiles/P4-19.svg create mode 100644 tiles/P4-19/tile.json create mode 100644 tiles/P4-19/tile.svg delete mode 100644 tiles/P4-23.svg create mode 100644 tiles/P4-23/tile.json create mode 100644 tiles/P4-23/tile.svg delete mode 100644 tiles/P4-24.svg create mode 100644 tiles/P4-24/tile.json create mode 100644 tiles/P4-24/tile.svg delete mode 100644 tiles/P4-25.svg create mode 100644 tiles/P4-25/tile.json create mode 100644 tiles/P4-25/tile.svg delete mode 100644 tiles/P4-43-mod.svg create mode 100644 tiles/P4-43-modified/tile.json create mode 100644 tiles/P4-43-modified/tile.svg delete mode 100644 tiles/P4-43.svg create mode 100644 tiles/P4-43/tile.json create mode 100644 tiles/P4-43/tile.svg delete mode 100644 tiles/P4-47.svg create mode 100644 tiles/P4-47/tile.json create mode 100644 tiles/P4-47/tile.svg delete mode 100644 tiles/P5-10_11.svg create mode 100644 tiles/P5-10_11/tile.json create mode 100644 tiles/P5-10_11/tile.svg delete mode 100644 tiles/P5-19.svg create mode 100644 tiles/P5-19/tile.json create mode 100644 tiles/P5-19/tile.svg delete mode 100644 tiles/P5-23_24.svg create mode 100644 tiles/P5-23_24/tile.json create mode 100644 tiles/P5-23_24/tile.svg delete mode 100644 tiles/P5-4.svg create mode 100644 tiles/P5-4/tile.json create mode 100644 tiles/P5-4/tile.svg delete mode 100644 tiles/P6-6_11.svg create mode 100644 tiles/P6-6_11/tile.json create mode 100644 tiles/P6-6_11/tile.svg create mode 100644 tiles/diamond-square/tile.json create mode 100644 tiles/diamond-square/tile.svg delete mode 100644 tiles/diamond_square.svg delete mode 100644 tiles/hexagon.svg create mode 100644 tiles/hexagon/tile.json create mode 100644 tiles/hexagon/tile.svg create mode 100644 tiles/weird-one/tile.json create mode 100644 tiles/weird-one/tile.svg delete mode 100644 tiles/weird_one.svg diff --git a/Makefile b/Makefile index c81e2a98..64d6bed8 100644 --- a/Makefile +++ b/Makefile @@ -19,11 +19,12 @@ messages.po: inx sed -i 's/charset=CHARSET/charset=UTF-8/g' messages-inx.po bin/pyembroidery-gettext > pyembroidery-format-descriptions.py bin/inkstitch-fonts-gettext > inkstitch-fonts-metadata.py + bin/inkstitch-tiles-gettext > inkstitch-tiles-metadata.py # After the inx files are finished building, we don't need the src/ folder anymore. # We don't want babel to grab possible translation strings from that folder, so let's remove it rm -rf src/ pybabel extract -o messages-babel.po -F babel.conf --add-location=full --add-comments=l10n,L10n,L10N --sort-by-file --strip-comments -k N_ -k '$$gettext' . - rm pyembroidery-format-descriptions.py inkstitch-fonts-metadata.py + rm pyembroidery-format-descriptions.py inkstitch-fonts-metadata.py inkstitch-tiles-metadata.py cd electron && yarn --link-duplicates --pure-lockfile find electron/src -name '*.html' -o -name '*.js' -o -name '*.vue' | xargs electron/node_modules/.bin/gettext-extract --quiet --attribute v-translate --output messages-vue.po msgcat -o messages.po messages-babel.po messages-vue.po messages-inx.po diff --git a/bin/inkstitch-tiles-gettext b/bin/inkstitch-tiles-gettext new file mode 100755 index 00000000..e125dabf --- /dev/null +++ b/bin/inkstitch-tiles-gettext @@ -0,0 +1,21 @@ +#!/usr/bin/env python + +import os +import json + +# generate fake python code containing the names and descriptions of all built- +# in tiles as gettext calls so that pybabel will extract them into messages.po + +tiles_dir = os.path.join(os.path.dirname(__file__), "..", "tiles") + +for tile in sorted(os.listdir(tiles_dir)): + with open(os.path.join(tiles_dir, tile, "tile.json")) as tile_json: + tile_metadata = json.load(tile_json) + + print("# L10N name of tile in tiles/%s" % tile) + print("_(%s)" % repr(tile_metadata.get("name", ""))) + + if tile_metadata.get("description", ""): + print("# L10N description of tile in tiles/%s" % tile) + print("_(%s)" % repr(tile_metadata.get("description", ""))) + diff --git a/lib/stitches/meander_fill.py b/lib/stitches/meander_fill.py index 6278b0ad..964a7a41 100644 --- a/lib/stitches/meander_fill.py +++ b/lib/stitches/meander_fill.py @@ -33,11 +33,11 @@ def meander_fill(fill, shape, shape_index, starting_point, ending_point): return post_process(generate_meander_path(graph, start, end, rng), shape, fill) -def get_tile(tile_name): - all_tiles = {tile.name: tile for tile in tiles.all_tiles()} +def get_tile(tile_id): + all_tiles = {tile.id: tile for tile in tiles.all_tiles()} try: - return all_tiles.get(tile_name, all_tiles.popitem()[1]) + return all_tiles.get(tile_id, all_tiles.popitem()[1]) except KeyError: return None diff --git a/lib/tiles.py b/lib/tiles.py index fce4d26f..683804a6 100644 --- a/lib/tiles.py +++ b/lib/tiles.py @@ -2,12 +2,14 @@ import os from math import ceil, floor import inkex +import json import lxml import networkx as nx from shapely.geometry import LineString from shapely.prepared import prep from .debug import debug +from .i18n import _ from .svg import apply_transforms from .utils import Point, cache, get_bundled_dir, guess_inkscape_config_path from .utils.threading import check_stop_flag @@ -18,10 +20,8 @@ class Tile: self._load_tile(path) def _load_tile(self, tile_path): - self.tile_svg = inkex.load_svg(tile_path) - self.tile_path = tile_path - self.id = self._get_name(tile_path) - self.name = self.id + self.tile_svg = inkex.load_svg(os.path.join(tile_path, "tile.svg")) + self._load_metadata(tile_path) self.tile = None self.width = None self.height = None @@ -32,10 +32,16 @@ class Tile: return self.name < other.name def __repr__(self): - return f"Tile({self.name}, {self.shift0}, {self.shift1})" + return f"Tile({self.name}, {self.id})" __str__ = __repr__ + def _load_metadata(self, tile_path): + with open(os.path.join(tile_path, "tile.json"), "rb") as tile_json: + tile_metadata = json.load(tile_json) + self.name = _(tile_metadata.get('name')) + self.id = tile_metadata.get('id') + def _get_name(self, tile_path): return os.path.splitext(os.path.basename(tile_path))[0] @@ -166,13 +172,16 @@ def all_tile_paths(): @cache def all_tiles(): tiles = [] - for tile_dir in all_tile_paths(): + for tiles_path in all_tile_paths(): try: - for tile_file in sorted(os.listdir(tile_dir)): + for tile_dir in sorted(os.listdir(tiles_path)): try: - tiles.append(Tile(os.path.join(tile_dir, tile_file))) - except (OSError, lxml.etree.XMLSyntaxError): - pass + tiles.append(Tile(os.path.join(tiles_path, tile_dir))) + except (OSError, lxml.etree.XMLSyntaxError, json.JSONDecodeError, KeyError) as exc: + debug.log(f"error loading tile {tiles_path}/{tile_dir}: {exc}") + except Exception as exc: + debug.log(f"unexpected error loading tile {tiles_path}/{tile_dir}: {exc}") + raise except FileNotFoundError: pass diff --git a/tiles/N3-11a.svg b/tiles/N3-11a.svg deleted file mode 100644 index 165fb8ce..00000000 --- a/tiles/N3-11a.svg +++ /dev/null @@ -1,119 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tiles/N3-11a/tile.json b/tiles/N3-11a/tile.json new file mode 100644 index 00000000..d894e7c4 --- /dev/null +++ b/tiles/N3-11a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-11a", + "name": "N3-11a", + "description": "" +} diff --git a/tiles/N3-11a/tile.svg b/tiles/N3-11a/tile.svg new file mode 100644 index 00000000..165fb8ce --- /dev/null +++ b/tiles/N3-11a/tile.svg @@ -0,0 +1,119 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tiles/N3-12.svg b/tiles/N3-12.svg deleted file mode 100644 index fb2bab94..00000000 --- a/tiles/N3-12.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-12/tile.json b/tiles/N3-12/tile.json new file mode 100644 index 00000000..69372fad --- /dev/null +++ b/tiles/N3-12/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-12", + "name": "N3-12", + "description": "" +} diff --git a/tiles/N3-12/tile.svg b/tiles/N3-12/tile.svg new file mode 100644 index 00000000..fb2bab94 --- /dev/null +++ b/tiles/N3-12/tile.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-16a.svg b/tiles/N3-16a.svg deleted file mode 100644 index 64d7a2c8..00000000 --- a/tiles/N3-16a.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-16a/tile.json b/tiles/N3-16a/tile.json new file mode 100644 index 00000000..400caedc --- /dev/null +++ b/tiles/N3-16a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-16a", + "name": "N3-16a", + "description": "" +} diff --git a/tiles/N3-16a/tile.svg b/tiles/N3-16a/tile.svg new file mode 100644 index 00000000..64d7a2c8 --- /dev/null +++ b/tiles/N3-16a/tile.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-17.svg b/tiles/N3-17.svg deleted file mode 100644 index 71b571c2..00000000 --- a/tiles/N3-17.svg +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-17/tile.json b/tiles/N3-17/tile.json new file mode 100644 index 00000000..c5ee9c4f --- /dev/null +++ b/tiles/N3-17/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-17", + "name": "N3-17", + "description": "" +} diff --git a/tiles/N3-17/tile.svg b/tiles/N3-17/tile.svg new file mode 100644 index 00000000..71b571c2 --- /dev/null +++ b/tiles/N3-17/tile.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-18-modified.svg b/tiles/N3-18-modified.svg deleted file mode 100644 index 6fd21056..00000000 --- a/tiles/N3-18-modified.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-18-modified/tile.json b/tiles/N3-18-modified/tile.json new file mode 100644 index 00000000..1e661e9f --- /dev/null +++ b/tiles/N3-18-modified/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-18-modified", + "name": "N3-18-modified", + "description": "" +} diff --git a/tiles/N3-18-modified/tile.svg b/tiles/N3-18-modified/tile.svg new file mode 100644 index 00000000..6fd21056 --- /dev/null +++ b/tiles/N3-18-modified/tile.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-18.svg b/tiles/N3-18.svg deleted file mode 100644 index 453e8600..00000000 --- a/tiles/N3-18.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-18/tile.json b/tiles/N3-18/tile.json new file mode 100644 index 00000000..98c6a524 --- /dev/null +++ b/tiles/N3-18/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-18", + "name": "N3-18", + "description": "" +} diff --git a/tiles/N3-18/tile.svg b/tiles/N3-18/tile.svg new file mode 100644 index 00000000..453e8600 --- /dev/null +++ b/tiles/N3-18/tile.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-20.svg b/tiles/N3-20.svg deleted file mode 100644 index 7b941ea9..00000000 --- a/tiles/N3-20.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-20/tile.json b/tiles/N3-20/tile.json new file mode 100644 index 00000000..3732df2f --- /dev/null +++ b/tiles/N3-20/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-20", + "name": "N3-20", + "description": "" +} diff --git a/tiles/N3-20/tile.svg b/tiles/N3-20/tile.svg new file mode 100644 index 00000000..7b941ea9 --- /dev/null +++ b/tiles/N3-20/tile.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-23b.svg b/tiles/N3-23b.svg deleted file mode 100644 index 96a7c37a..00000000 --- a/tiles/N3-23b.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-23b/tile.json b/tiles/N3-23b/tile.json new file mode 100644 index 00000000..9e506053 --- /dev/null +++ b/tiles/N3-23b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-23b", + "name": "N3-23b", + "description": "" +} diff --git a/tiles/N3-23b/tile.svg b/tiles/N3-23b/tile.svg new file mode 100644 index 00000000..96a7c37a --- /dev/null +++ b/tiles/N3-23b/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-25c.svg b/tiles/N3-25c.svg deleted file mode 100644 index 11912579..00000000 --- a/tiles/N3-25c.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-25c/tile.json b/tiles/N3-25c/tile.json new file mode 100644 index 00000000..769e79ce --- /dev/null +++ b/tiles/N3-25c/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-25c", + "name": "N3-25c", + "description": "" +} diff --git a/tiles/N3-25c/tile.svg b/tiles/N3-25c/tile.svg new file mode 100644 index 00000000..11912579 --- /dev/null +++ b/tiles/N3-25c/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-26b.svg b/tiles/N3-26b.svg deleted file mode 100644 index 2a972d13..00000000 --- a/tiles/N3-26b.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-26b/tile.json b/tiles/N3-26b/tile.json new file mode 100644 index 00000000..bad658a0 --- /dev/null +++ b/tiles/N3-26b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-26b", + "name": "N3-26b", + "description": "" +} diff --git a/tiles/N3-26b/tile.svg b/tiles/N3-26b/tile.svg new file mode 100644 index 00000000..2a972d13 --- /dev/null +++ b/tiles/N3-26b/tile.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-27.svg b/tiles/N3-27.svg deleted file mode 100644 index 920c93cb..00000000 --- a/tiles/N3-27.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-27/tile.json b/tiles/N3-27/tile.json new file mode 100644 index 00000000..6133ad1d --- /dev/null +++ b/tiles/N3-27/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-27", + "name": "N3-27", + "description": "" +} diff --git a/tiles/N3-27/tile.svg b/tiles/N3-27/tile.svg new file mode 100644 index 00000000..920c93cb --- /dev/null +++ b/tiles/N3-27/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-30a.svg b/tiles/N3-30a.svg deleted file mode 100644 index 3f96a97e..00000000 --- a/tiles/N3-30a.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-30a/tile.json b/tiles/N3-30a/tile.json new file mode 100644 index 00000000..226adc4e --- /dev/null +++ b/tiles/N3-30a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-30a", + "name": "N3-30a", + "description": "" +} diff --git a/tiles/N3-30a/tile.svg b/tiles/N3-30a/tile.svg new file mode 100644 index 00000000..3f96a97e --- /dev/null +++ b/tiles/N3-30a/tile.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-51b.svg b/tiles/N3-51b.svg deleted file mode 100644 index bd708549..00000000 --- a/tiles/N3-51b.svg +++ /dev/null @@ -1,144 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tiles/N3-51b/tile.json b/tiles/N3-51b/tile.json new file mode 100644 index 00000000..8ea879e7 --- /dev/null +++ b/tiles/N3-51b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-51b", + "name": "N3-51b", + "description": "" +} diff --git a/tiles/N3-51b/tile.svg b/tiles/N3-51b/tile.svg new file mode 100644 index 00000000..bd708549 --- /dev/null +++ b/tiles/N3-51b/tile.svg @@ -0,0 +1,144 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tiles/N3-57f-modified.svg b/tiles/N3-57f-modified.svg deleted file mode 100644 index 6c41a2c7..00000000 --- a/tiles/N3-57f-modified.svg +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/tiles/N3-57f-modified/tile.json b/tiles/N3-57f-modified/tile.json new file mode 100644 index 00000000..b0ddb9c9 --- /dev/null +++ b/tiles/N3-57f-modified/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-57f-modified", + "name": "N3-57f-modified", + "description": "" +} diff --git a/tiles/N3-57f-modified/tile.svg b/tiles/N3-57f-modified/tile.svg new file mode 100644 index 00000000..6c41a2c7 --- /dev/null +++ b/tiles/N3-57f-modified/tile.svg @@ -0,0 +1,89 @@ + + + + + + + + + + + + + + + + diff --git a/tiles/N3-58b.svg b/tiles/N3-58b.svg deleted file mode 100644 index 8c653828..00000000 --- a/tiles/N3-58b.svg +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-58b/tile.json b/tiles/N3-58b/tile.json new file mode 100644 index 00000000..8246e2a0 --- /dev/null +++ b/tiles/N3-58b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-58b", + "name": "N3-58b", + "description": "" +} diff --git a/tiles/N3-58b/tile.svg b/tiles/N3-58b/tile.svg new file mode 100644 index 00000000..8c653828 --- /dev/null +++ b/tiles/N3-58b/tile.svg @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-6.svg b/tiles/N3-6.svg deleted file mode 100644 index 873f35fb..00000000 --- a/tiles/N3-6.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-6/tile.json b/tiles/N3-6/tile.json new file mode 100644 index 00000000..721f894c --- /dev/null +++ b/tiles/N3-6/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-6", + "name": "N3-6", + "description": "" +} diff --git a/tiles/N3-6/tile.svg b/tiles/N3-6/tile.svg new file mode 100644 index 00000000..873f35fb --- /dev/null +++ b/tiles/N3-6/tile.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-7.svg b/tiles/N3-7.svg deleted file mode 100644 index 68c23c52..00000000 --- a/tiles/N3-7.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-7/tile.json b/tiles/N3-7/tile.json new file mode 100644 index 00000000..a2e82586 --- /dev/null +++ b/tiles/N3-7/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-7", + "name": "N3-7", + "description": "" +} diff --git a/tiles/N3-7/tile.svg b/tiles/N3-7/tile.svg new file mode 100644 index 00000000..68c23c52 --- /dev/null +++ b/tiles/N3-7/tile.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-8a-modified.svg b/tiles/N3-8a-modified.svg deleted file mode 100644 index f892d36d..00000000 --- a/tiles/N3-8a-modified.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-8a-modified/tile.json b/tiles/N3-8a-modified/tile.json new file mode 100644 index 00000000..f1eedce0 --- /dev/null +++ b/tiles/N3-8a-modified/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-8a-modified", + "name": "N3-8a-modified", + "description": "" +} diff --git a/tiles/N3-8a-modified/tile.svg b/tiles/N3-8a-modified/tile.svg new file mode 100644 index 00000000..f892d36d --- /dev/null +++ b/tiles/N3-8a-modified/tile.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-8a.svg b/tiles/N3-8a.svg deleted file mode 100644 index c03aef24..00000000 --- a/tiles/N3-8a.svg +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-8a/tile.json b/tiles/N3-8a/tile.json new file mode 100644 index 00000000..870cc679 --- /dev/null +++ b/tiles/N3-8a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-8a", + "name": "N3-8a", + "description": "" +} diff --git a/tiles/N3-8a/tile.svg b/tiles/N3-8a/tile.svg new file mode 100644 index 00000000..c03aef24 --- /dev/null +++ b/tiles/N3-8a/tile.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N3-8b.svg b/tiles/N3-8b.svg deleted file mode 100644 index 20d11a33..00000000 --- a/tiles/N3-8b.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N3-8b/tile.json b/tiles/N3-8b/tile.json new file mode 100644 index 00000000..ed3d7971 --- /dev/null +++ b/tiles/N3-8b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N3-8b", + "name": "N3-8b", + "description": "" +} diff --git a/tiles/N3-8b/tile.svg b/tiles/N3-8b/tile.svg new file mode 100644 index 00000000..20d11a33 --- /dev/null +++ b/tiles/N3-8b/tile.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13b.svg b/tiles/N4-13b.svg deleted file mode 100644 index d8a5020e..00000000 --- a/tiles/N4-13b.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13b/tile.json b/tiles/N4-13b/tile.json new file mode 100644 index 00000000..dd43c835 --- /dev/null +++ b/tiles/N4-13b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-13b", + "name": "N4-13b", + "description": "" +} diff --git a/tiles/N4-13b/tile.svg b/tiles/N4-13b/tile.svg new file mode 100644 index 00000000..d8a5020e --- /dev/null +++ b/tiles/N4-13b/tile.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13c.svg b/tiles/N4-13c.svg deleted file mode 100644 index 6eee2afd..00000000 --- a/tiles/N4-13c.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13c/tile.json b/tiles/N4-13c/tile.json new file mode 100644 index 00000000..a7865243 --- /dev/null +++ b/tiles/N4-13c/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-13c", + "name": "N4-13c", + "description": "" +} diff --git a/tiles/N4-13c/tile.svg b/tiles/N4-13c/tile.svg new file mode 100644 index 00000000..6eee2afd --- /dev/null +++ b/tiles/N4-13c/tile.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13d.svg b/tiles/N4-13d.svg deleted file mode 100644 index 8032cafa..00000000 --- a/tiles/N4-13d.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13d/tile.json b/tiles/N4-13d/tile.json new file mode 100644 index 00000000..43d3040b --- /dev/null +++ b/tiles/N4-13d/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-13d", + "name": "N4-13d", + "description": "" +} diff --git a/tiles/N4-13d/tile.svg b/tiles/N4-13d/tile.svg new file mode 100644 index 00000000..8032cafa --- /dev/null +++ b/tiles/N4-13d/tile.svg @@ -0,0 +1,53 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13e.svg b/tiles/N4-13e.svg deleted file mode 100644 index 89acd87f..00000000 --- a/tiles/N4-13e.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13e/tile.json b/tiles/N4-13e/tile.json new file mode 100644 index 00000000..15ea45b6 --- /dev/null +++ b/tiles/N4-13e/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-13e", + "name": "N4-13e", + "description": "" +} diff --git a/tiles/N4-13e/tile.svg b/tiles/N4-13e/tile.svg new file mode 100644 index 00000000..89acd87f --- /dev/null +++ b/tiles/N4-13e/tile.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-13f.svg b/tiles/N4-13f.svg deleted file mode 100644 index fc8bd5b0..00000000 --- a/tiles/N4-13f.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-13f/tile.json b/tiles/N4-13f/tile.json new file mode 100644 index 00000000..46e27a4c --- /dev/null +++ b/tiles/N4-13f/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-13f", + "name": "N4-13f", + "description": "" +} diff --git a/tiles/N4-13f/tile.svg b/tiles/N4-13f/tile.svg new file mode 100644 index 00000000..fc8bd5b0 --- /dev/null +++ b/tiles/N4-13f/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-16a.svg b/tiles/N4-16a.svg deleted file mode 100644 index 3482fc98..00000000 --- a/tiles/N4-16a.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-16a/tile.json b/tiles/N4-16a/tile.json new file mode 100644 index 00000000..0d7bd2b1 --- /dev/null +++ b/tiles/N4-16a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-16a", + "name": "N4-16a", + "description": "" +} diff --git a/tiles/N4-16a/tile.svg b/tiles/N4-16a/tile.svg new file mode 100644 index 00000000..3482fc98 --- /dev/null +++ b/tiles/N4-16a/tile.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-19.svg b/tiles/N4-19.svg deleted file mode 100644 index 0b2682ac..00000000 --- a/tiles/N4-19.svg +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-19/tile.json b/tiles/N4-19/tile.json new file mode 100644 index 00000000..723a3260 --- /dev/null +++ b/tiles/N4-19/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-19", + "name": "N4-19", + "description": "" +} diff --git a/tiles/N4-19/tile.svg b/tiles/N4-19/tile.svg new file mode 100644 index 00000000..0b2682ac --- /dev/null +++ b/tiles/N4-19/tile.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-20.svg b/tiles/N4-20.svg deleted file mode 100644 index ed0504a9..00000000 --- a/tiles/N4-20.svg +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-20/tile.json b/tiles/N4-20/tile.json new file mode 100644 index 00000000..051a99ee --- /dev/null +++ b/tiles/N4-20/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-20", + "name": "N4-20", + "description": "" +} diff --git a/tiles/N4-20/tile.svg b/tiles/N4-20/tile.svg new file mode 100644 index 00000000..ed0504a9 --- /dev/null +++ b/tiles/N4-20/tile.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-21c.svg b/tiles/N4-21c.svg deleted file mode 100644 index c167b8b9..00000000 --- a/tiles/N4-21c.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-21c/tile.json b/tiles/N4-21c/tile.json new file mode 100644 index 00000000..44d20830 --- /dev/null +++ b/tiles/N4-21c/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-21c", + "name": "N4-21c", + "description": "" +} diff --git a/tiles/N4-21c/tile.svg b/tiles/N4-21c/tile.svg new file mode 100644 index 00000000..c167b8b9 --- /dev/null +++ b/tiles/N4-21c/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-22.svg b/tiles/N4-22.svg deleted file mode 100644 index 6441eae2..00000000 --- a/tiles/N4-22.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-22/tile.json b/tiles/N4-22/tile.json new file mode 100644 index 00000000..89035c70 --- /dev/null +++ b/tiles/N4-22/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-22", + "name": "N4-22", + "description": "" +} diff --git a/tiles/N4-22/tile.svg b/tiles/N4-22/tile.svg new file mode 100644 index 00000000..6441eae2 --- /dev/null +++ b/tiles/N4-22/tile.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-23a.svg b/tiles/N4-23a.svg deleted file mode 100644 index 9f7bd953..00000000 --- a/tiles/N4-23a.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-23a/tile.json b/tiles/N4-23a/tile.json new file mode 100644 index 00000000..16f0db91 --- /dev/null +++ b/tiles/N4-23a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-23a", + "name": "N4-23a", + "description": "" +} diff --git a/tiles/N4-23a/tile.svg b/tiles/N4-23a/tile.svg new file mode 100644 index 00000000..9f7bd953 --- /dev/null +++ b/tiles/N4-23a/tile.svg @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-23c.svg b/tiles/N4-23c.svg deleted file mode 100644 index 074147ef..00000000 --- a/tiles/N4-23c.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-23c/tile.json b/tiles/N4-23c/tile.json new file mode 100644 index 00000000..15c40458 --- /dev/null +++ b/tiles/N4-23c/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-23c", + "name": "N4-23c", + "description": "" +} diff --git a/tiles/N4-23c/tile.svg b/tiles/N4-23c/tile.svg new file mode 100644 index 00000000..074147ef --- /dev/null +++ b/tiles/N4-23c/tile.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-27.svg b/tiles/N4-27.svg deleted file mode 100644 index 915d8687..00000000 --- a/tiles/N4-27.svg +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-27/tile.json b/tiles/N4-27/tile.json new file mode 100644 index 00000000..88996486 --- /dev/null +++ b/tiles/N4-27/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-27", + "name": "N4-27", + "description": "" +} diff --git a/tiles/N4-27/tile.svg b/tiles/N4-27/tile.svg new file mode 100644 index 00000000..915d8687 --- /dev/null +++ b/tiles/N4-27/tile.svg @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-29e.svg b/tiles/N4-29e.svg deleted file mode 100644 index a098471e..00000000 --- a/tiles/N4-29e.svg +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-29e/tile.json b/tiles/N4-29e/tile.json new file mode 100644 index 00000000..a762ab37 --- /dev/null +++ b/tiles/N4-29e/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-29e", + "name": "N4-29e", + "description": "" +} diff --git a/tiles/N4-29e/tile.svg b/tiles/N4-29e/tile.svg new file mode 100644 index 00000000..a098471e --- /dev/null +++ b/tiles/N4-29e/tile.svg @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-29f.svg b/tiles/N4-29f.svg deleted file mode 100644 index cf0984e4..00000000 --- a/tiles/N4-29f.svg +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-29f/tile.json b/tiles/N4-29f/tile.json new file mode 100644 index 00000000..624de3a8 --- /dev/null +++ b/tiles/N4-29f/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-29f", + "name": "N4-29f", + "description": "" +} diff --git a/tiles/N4-29f/tile.svg b/tiles/N4-29f/tile.svg new file mode 100644 index 00000000..cf0984e4 --- /dev/null +++ b/tiles/N4-29f/tile.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-31.svg b/tiles/N4-31.svg deleted file mode 100644 index e4c15534..00000000 --- a/tiles/N4-31.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-31/tile.json b/tiles/N4-31/tile.json new file mode 100644 index 00000000..21644fb9 --- /dev/null +++ b/tiles/N4-31/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-31", + "name": "N4-31", + "description": "" +} diff --git a/tiles/N4-31/tile.svg b/tiles/N4-31/tile.svg new file mode 100644 index 00000000..e4c15534 --- /dev/null +++ b/tiles/N4-31/tile.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-38.svg b/tiles/N4-38.svg deleted file mode 100644 index b3e7c589..00000000 --- a/tiles/N4-38.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-38/tile.json b/tiles/N4-38/tile.json new file mode 100644 index 00000000..ea8f0012 --- /dev/null +++ b/tiles/N4-38/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-38", + "name": "N4-38", + "description": "" +} diff --git a/tiles/N4-38/tile.svg b/tiles/N4-38/tile.svg new file mode 100644 index 00000000..b3e7c589 --- /dev/null +++ b/tiles/N4-38/tile.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-42e.svg b/tiles/N4-42e.svg deleted file mode 100644 index edc5ba37..00000000 --- a/tiles/N4-42e.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-42e/tile.json b/tiles/N4-42e/tile.json new file mode 100644 index 00000000..986efb23 --- /dev/null +++ b/tiles/N4-42e/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-42e", + "name": "N4-42e", + "description": "" +} diff --git a/tiles/N4-42e/tile.svg b/tiles/N4-42e/tile.svg new file mode 100644 index 00000000..edc5ba37 --- /dev/null +++ b/tiles/N4-42e/tile.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-44.svg b/tiles/N4-44.svg deleted file mode 100644 index 4de95bbd..00000000 --- a/tiles/N4-44.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-44/tile.json b/tiles/N4-44/tile.json new file mode 100644 index 00000000..a23ac860 --- /dev/null +++ b/tiles/N4-44/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-44", + "name": "N4-44", + "description": "" +} diff --git a/tiles/N4-44/tile.svg b/tiles/N4-44/tile.svg new file mode 100644 index 00000000..4de95bbd --- /dev/null +++ b/tiles/N4-44/tile.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-52.svg b/tiles/N4-52.svg deleted file mode 100644 index ce66e4e6..00000000 --- a/tiles/N4-52.svg +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-52/tile.json b/tiles/N4-52/tile.json new file mode 100644 index 00000000..93cff640 --- /dev/null +++ b/tiles/N4-52/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-52", + "name": "N4-52", + "description": "" +} diff --git a/tiles/N4-52/tile.svg b/tiles/N4-52/tile.svg new file mode 100644 index 00000000..ce66e4e6 --- /dev/null +++ b/tiles/N4-52/tile.svg @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-54d.svg b/tiles/N4-54d.svg deleted file mode 100644 index 6bcc6b4b..00000000 --- a/tiles/N4-54d.svg +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-54d/tile.json b/tiles/N4-54d/tile.json new file mode 100644 index 00000000..306b7eb1 --- /dev/null +++ b/tiles/N4-54d/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-54d", + "name": "N4-54d", + "description": "" +} diff --git a/tiles/N4-54d/tile.svg b/tiles/N4-54d/tile.svg new file mode 100644 index 00000000..6bcc6b4b --- /dev/null +++ b/tiles/N4-54d/tile.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-5a-2.svg b/tiles/N4-5a-2.svg deleted file mode 100644 index ba044be8..00000000 --- a/tiles/N4-5a-2.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-5a-2/tile.json b/tiles/N4-5a-2/tile.json new file mode 100644 index 00000000..4dbbb921 --- /dev/null +++ b/tiles/N4-5a-2/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-5a-2", + "name": "N4-5a-2", + "description": "" +} diff --git a/tiles/N4-5a-2/tile.svg b/tiles/N4-5a-2/tile.svg new file mode 100644 index 00000000..ba044be8 --- /dev/null +++ b/tiles/N4-5a-2/tile.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-5a.svg b/tiles/N4-5a.svg deleted file mode 100644 index 52cceab3..00000000 --- a/tiles/N4-5a.svg +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-5a/tile.json b/tiles/N4-5a/tile.json new file mode 100644 index 00000000..4eb487e9 --- /dev/null +++ b/tiles/N4-5a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-5a", + "name": "N4-5a", + "description": "" +} diff --git a/tiles/N4-5a/tile.svg b/tiles/N4-5a/tile.svg new file mode 100644 index 00000000..52cceab3 --- /dev/null +++ b/tiles/N4-5a/tile.svg @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-82.svg b/tiles/N4-82.svg deleted file mode 100644 index 243d6608..00000000 --- a/tiles/N4-82.svg +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-82/tile.json b/tiles/N4-82/tile.json new file mode 100644 index 00000000..476539aa --- /dev/null +++ b/tiles/N4-82/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-82", + "name": "N4-82", + "description": "" +} diff --git a/tiles/N4-82/tile.svg b/tiles/N4-82/tile.svg new file mode 100644 index 00000000..243d6608 --- /dev/null +++ b/tiles/N4-82/tile.svg @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N4-85d.svg b/tiles/N4-85d.svg deleted file mode 100644 index 6714431e..00000000 --- a/tiles/N4-85d.svg +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N4-85d/tile.json b/tiles/N4-85d/tile.json new file mode 100644 index 00000000..3729007e --- /dev/null +++ b/tiles/N4-85d/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N4-85d", + "name": "N4-85d", + "description": "" +} diff --git a/tiles/N4-85d/tile.svg b/tiles/N4-85d/tile.svg new file mode 100644 index 00000000..6714431e --- /dev/null +++ b/tiles/N4-85d/tile.svg @@ -0,0 +1,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N5-1e1.svg b/tiles/N5-1e1.svg deleted file mode 100644 index 5af8aaa0..00000000 --- a/tiles/N5-1e1.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N5-1e1/tile.json b/tiles/N5-1e1/tile.json new file mode 100644 index 00000000..0b7bdc84 --- /dev/null +++ b/tiles/N5-1e1/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N5-1e1", + "name": "N5-1e1", + "description": "" +} diff --git a/tiles/N5-1e1/tile.svg b/tiles/N5-1e1/tile.svg new file mode 100644 index 00000000..5af8aaa0 --- /dev/null +++ b/tiles/N5-1e1/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N5-1q2.svg b/tiles/N5-1q2.svg deleted file mode 100644 index ba6802ed..00000000 --- a/tiles/N5-1q2.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N5-1q2/tile.json b/tiles/N5-1q2/tile.json new file mode 100644 index 00000000..fa85b838 --- /dev/null +++ b/tiles/N5-1q2/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N5-1q2", + "name": "N5-1q2", + "description": "" +} diff --git a/tiles/N5-1q2/tile.svg b/tiles/N5-1q2/tile.svg new file mode 100644 index 00000000..ba6802ed --- /dev/null +++ b/tiles/N5-1q2/tile.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N5-1t.svg b/tiles/N5-1t.svg deleted file mode 100644 index b6e551ef..00000000 --- a/tiles/N5-1t.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N5-1t/tile.json b/tiles/N5-1t/tile.json new file mode 100644 index 00000000..f1df35cb --- /dev/null +++ b/tiles/N5-1t/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N5-1t", + "name": "N5-1t", + "description": "" +} diff --git a/tiles/N5-1t/tile.svg b/tiles/N5-1t/tile.svg new file mode 100644 index 00000000..b6e551ef --- /dev/null +++ b/tiles/N5-1t/tile.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N6-1.svg b/tiles/N6-1.svg deleted file mode 100644 index 922e9ed7..00000000 --- a/tiles/N6-1.svg +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/tiles/N6-1/tile.json b/tiles/N6-1/tile.json new file mode 100644 index 00000000..b8333705 --- /dev/null +++ b/tiles/N6-1/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N6-1", + "name": "N6-1", + "description": "" +} diff --git a/tiles/N6-1/tile.svg b/tiles/N6-1/tile.svg new file mode 100644 index 00000000..922e9ed7 --- /dev/null +++ b/tiles/N6-1/tile.svg @@ -0,0 +1,16 @@ + + + + + + + \ No newline at end of file diff --git a/tiles/N6-2.svg b/tiles/N6-2.svg deleted file mode 100644 index 57dce497..00000000 --- a/tiles/N6-2.svg +++ /dev/null @@ -1,47 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N6-2/tile.json b/tiles/N6-2/tile.json new file mode 100644 index 00000000..5fe7eff1 --- /dev/null +++ b/tiles/N6-2/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N6-2", + "name": "N6-2", + "description": "" +} diff --git a/tiles/N6-2/tile.svg b/tiles/N6-2/tile.svg new file mode 100644 index 00000000..57dce497 --- /dev/null +++ b/tiles/N6-2/tile.svg @@ -0,0 +1,47 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N6-5b.svg b/tiles/N6-5b.svg deleted file mode 100644 index 5f5bdb28..00000000 --- a/tiles/N6-5b.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N6-5b/tile.json b/tiles/N6-5b/tile.json new file mode 100644 index 00000000..8c908ca8 --- /dev/null +++ b/tiles/N6-5b/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N6-5b", + "name": "N6-5b", + "description": "" +} diff --git a/tiles/N6-5b/tile.svg b/tiles/N6-5b/tile.svg new file mode 100644 index 00000000..5f5bdb28 --- /dev/null +++ b/tiles/N6-5b/tile.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N6-6a.svg b/tiles/N6-6a.svg deleted file mode 100644 index 6f2764a2..00000000 --- a/tiles/N6-6a.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/N6-6a/tile.json b/tiles/N6-6a/tile.json new file mode 100644 index 00000000..2cd74f31 --- /dev/null +++ b/tiles/N6-6a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N6-6a", + "name": "N6-6a", + "description": "" +} diff --git a/tiles/N6-6a/tile.svg b/tiles/N6-6a/tile.svg new file mode 100644 index 00000000..6f2764a2 --- /dev/null +++ b/tiles/N6-6a/tile.svg @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/N6-6c.svg b/tiles/N6-6c.svg deleted file mode 100644 index 2e9aafef..00000000 --- a/tiles/N6-6c.svg +++ /dev/null @@ -1,197 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/tiles/N6-6c/tile.json b/tiles/N6-6c/tile.json new file mode 100644 index 00000000..aeb5754b --- /dev/null +++ b/tiles/N6-6c/tile.json @@ -0,0 +1,5 @@ +{ + "id": "N6-6c", + "name": "N6-6c", + "description": "" +} diff --git a/tiles/N6-6c/tile.svg b/tiles/N6-6c/tile.svg new file mode 100644 index 00000000..2e9aafef --- /dev/null +++ b/tiles/N6-6c/tile.svg @@ -0,0 +1,197 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tiles/NC5-11a.svg b/tiles/NC5-11a.svg deleted file mode 100644 index 99592336..00000000 --- a/tiles/NC5-11a.svg +++ /dev/null @@ -1,35 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/NC5-11a/tile.json b/tiles/NC5-11a/tile.json new file mode 100644 index 00000000..c4a1a4d2 --- /dev/null +++ b/tiles/NC5-11a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "NC5-11a", + "name": "NC5-11a", + "description": "" +} diff --git a/tiles/NC5-11a/tile.svg b/tiles/NC5-11a/tile.svg new file mode 100644 index 00000000..99592336 --- /dev/null +++ b/tiles/NC5-11a/tile.svg @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/NC5-20a.svg b/tiles/NC5-20a.svg deleted file mode 100644 index 619bcfa3..00000000 --- a/tiles/NC5-20a.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/NC5-20a/tile.json b/tiles/NC5-20a/tile.json new file mode 100644 index 00000000..2605018e --- /dev/null +++ b/tiles/NC5-20a/tile.json @@ -0,0 +1,5 @@ +{ + "id": "NC5-20a", + "name": "NC5-20a", + "description": "" +} diff --git a/tiles/NC5-20a/tile.svg b/tiles/NC5-20a/tile.svg new file mode 100644 index 00000000..619bcfa3 --- /dev/null +++ b/tiles/NC5-20a/tile.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P3-1.svg b/tiles/P3-1.svg deleted file mode 100644 index 0af42603..00000000 --- a/tiles/P3-1.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P3-1/tile.json b/tiles/P3-1/tile.json new file mode 100644 index 00000000..520db529 --- /dev/null +++ b/tiles/P3-1/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P3-1", + "name": "P3-1", + "description": "" +} diff --git a/tiles/P3-1/tile.svg b/tiles/P3-1/tile.svg new file mode 100644 index 00000000..0af42603 --- /dev/null +++ b/tiles/P3-1/tile.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P3-12.svg b/tiles/P3-12.svg deleted file mode 100644 index 3c12e0b0..00000000 --- a/tiles/P3-12.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P3-12/tile.json b/tiles/P3-12/tile.json new file mode 100644 index 00000000..5145ac80 --- /dev/null +++ b/tiles/P3-12/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P3-12", + "name": "P3-12", + "description": "" +} diff --git a/tiles/P3-12/tile.svg b/tiles/P3-12/tile.svg new file mode 100644 index 00000000..3c12e0b0 --- /dev/null +++ b/tiles/P3-12/tile.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-1.svg b/tiles/P4-1.svg deleted file mode 100644 index 8d1d072e..00000000 --- a/tiles/P4-1.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - diff --git a/tiles/P4-1/tile.json b/tiles/P4-1/tile.json new file mode 100644 index 00000000..fa1fc31f --- /dev/null +++ b/tiles/P4-1/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-1", + "name": "P4-1", + "description": "" +} diff --git a/tiles/P4-1/tile.svg b/tiles/P4-1/tile.svg new file mode 100644 index 00000000..8d1d072e --- /dev/null +++ b/tiles/P4-1/tile.svg @@ -0,0 +1,72 @@ + + + + + + + + + + + + + diff --git a/tiles/P4-10.svg b/tiles/P4-10.svg deleted file mode 100644 index 45d5d1db..00000000 --- a/tiles/P4-10.svg +++ /dev/null @@ -1,38 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-10/tile.json b/tiles/P4-10/tile.json new file mode 100644 index 00000000..9cff628e --- /dev/null +++ b/tiles/P4-10/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-10", + "name": "P4-10", + "description": "" +} diff --git a/tiles/P4-10/tile.svg b/tiles/P4-10/tile.svg new file mode 100644 index 00000000..45d5d1db --- /dev/null +++ b/tiles/P4-10/tile.svg @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-15.svg b/tiles/P4-15.svg deleted file mode 100644 index f809c7f9..00000000 --- a/tiles/P4-15.svg +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - - - - - - - - - - - - - diff --git a/tiles/P4-15/tile.json b/tiles/P4-15/tile.json new file mode 100644 index 00000000..9684f913 --- /dev/null +++ b/tiles/P4-15/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-15", + "name": "P4-15", + "description": "" +} diff --git a/tiles/P4-15/tile.svg b/tiles/P4-15/tile.svg new file mode 100644 index 00000000..f809c7f9 --- /dev/null +++ b/tiles/P4-15/tile.svg @@ -0,0 +1,99 @@ + + + + + + + + + + + + + + + + + + + diff --git a/tiles/P4-19.svg b/tiles/P4-19.svg deleted file mode 100644 index 973cda8b..00000000 --- a/tiles/P4-19.svg +++ /dev/null @@ -1,74 +0,0 @@ - - - - - - - - - - - - - diff --git a/tiles/P4-19/tile.json b/tiles/P4-19/tile.json new file mode 100644 index 00000000..8b87d33e --- /dev/null +++ b/tiles/P4-19/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-19", + "name": "P4-19", + "description": "" +} diff --git a/tiles/P4-19/tile.svg b/tiles/P4-19/tile.svg new file mode 100644 index 00000000..973cda8b --- /dev/null +++ b/tiles/P4-19/tile.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + diff --git a/tiles/P4-23.svg b/tiles/P4-23.svg deleted file mode 100644 index df678b29..00000000 --- a/tiles/P4-23.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-23/tile.json b/tiles/P4-23/tile.json new file mode 100644 index 00000000..ccd595d3 --- /dev/null +++ b/tiles/P4-23/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-23", + "name": "P4-23", + "description": "" +} diff --git a/tiles/P4-23/tile.svg b/tiles/P4-23/tile.svg new file mode 100644 index 00000000..df678b29 --- /dev/null +++ b/tiles/P4-23/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-24.svg b/tiles/P4-24.svg deleted file mode 100644 index d2de4d4b..00000000 --- a/tiles/P4-24.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-24/tile.json b/tiles/P4-24/tile.json new file mode 100644 index 00000000..1e35a17f --- /dev/null +++ b/tiles/P4-24/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-24", + "name": "P4-24", + "description": "" +} diff --git a/tiles/P4-24/tile.svg b/tiles/P4-24/tile.svg new file mode 100644 index 00000000..d2de4d4b --- /dev/null +++ b/tiles/P4-24/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-25.svg b/tiles/P4-25.svg deleted file mode 100644 index 882ad06e..00000000 --- a/tiles/P4-25.svg +++ /dev/null @@ -1,39 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-25/tile.json b/tiles/P4-25/tile.json new file mode 100644 index 00000000..23e04510 --- /dev/null +++ b/tiles/P4-25/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-25", + "name": "P4-25", + "description": "" +} diff --git a/tiles/P4-25/tile.svg b/tiles/P4-25/tile.svg new file mode 100644 index 00000000..882ad06e --- /dev/null +++ b/tiles/P4-25/tile.svg @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-43-mod.svg b/tiles/P4-43-mod.svg deleted file mode 100644 index 477106ca..00000000 --- a/tiles/P4-43-mod.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-43-modified/tile.json b/tiles/P4-43-modified/tile.json new file mode 100644 index 00000000..27c7ce54 --- /dev/null +++ b/tiles/P4-43-modified/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-43-modified", + "name": "P4-43-modified", + "description": "" +} diff --git a/tiles/P4-43-modified/tile.svg b/tiles/P4-43-modified/tile.svg new file mode 100644 index 00000000..477106ca --- /dev/null +++ b/tiles/P4-43-modified/tile.svg @@ -0,0 +1,30 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-43.svg b/tiles/P4-43.svg deleted file mode 100644 index 18e260b3..00000000 --- a/tiles/P4-43.svg +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-43/tile.json b/tiles/P4-43/tile.json new file mode 100644 index 00000000..3af1b93d --- /dev/null +++ b/tiles/P4-43/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-43", + "name": "P4-43", + "description": "" +} diff --git a/tiles/P4-43/tile.svg b/tiles/P4-43/tile.svg new file mode 100644 index 00000000..18e260b3 --- /dev/null +++ b/tiles/P4-43/tile.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P4-47.svg b/tiles/P4-47.svg deleted file mode 100644 index 7d7df082..00000000 --- a/tiles/P4-47.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P4-47/tile.json b/tiles/P4-47/tile.json new file mode 100644 index 00000000..27acc39e --- /dev/null +++ b/tiles/P4-47/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P4-47", + "name": "P4-47", + "description": "" +} diff --git a/tiles/P4-47/tile.svg b/tiles/P4-47/tile.svg new file mode 100644 index 00000000..7d7df082 --- /dev/null +++ b/tiles/P4-47/tile.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P5-10_11.svg b/tiles/P5-10_11.svg deleted file mode 100644 index 8b578c95..00000000 --- a/tiles/P5-10_11.svg +++ /dev/null @@ -1,29 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P5-10_11/tile.json b/tiles/P5-10_11/tile.json new file mode 100644 index 00000000..f52691af --- /dev/null +++ b/tiles/P5-10_11/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P5-10_11", + "name": "P5-10_11", + "description": "" +} diff --git a/tiles/P5-10_11/tile.svg b/tiles/P5-10_11/tile.svg new file mode 100644 index 00000000..8b578c95 --- /dev/null +++ b/tiles/P5-10_11/tile.svg @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P5-19.svg b/tiles/P5-19.svg deleted file mode 100644 index 25898245..00000000 --- a/tiles/P5-19.svg +++ /dev/null @@ -1,31 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P5-19/tile.json b/tiles/P5-19/tile.json new file mode 100644 index 00000000..0041446f --- /dev/null +++ b/tiles/P5-19/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P5-19", + "name": "P5-19", + "description": "" +} diff --git a/tiles/P5-19/tile.svg b/tiles/P5-19/tile.svg new file mode 100644 index 00000000..25898245 --- /dev/null +++ b/tiles/P5-19/tile.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P5-23_24.svg b/tiles/P5-23_24.svg deleted file mode 100644 index 8b16cc87..00000000 --- a/tiles/P5-23_24.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P5-23_24/tile.json b/tiles/P5-23_24/tile.json new file mode 100644 index 00000000..20af6e96 --- /dev/null +++ b/tiles/P5-23_24/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P5-23_24", + "name": "P5-23_24", + "description": "" +} diff --git a/tiles/P5-23_24/tile.svg b/tiles/P5-23_24/tile.svg new file mode 100644 index 00000000..8b16cc87 --- /dev/null +++ b/tiles/P5-23_24/tile.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P5-4.svg b/tiles/P5-4.svg deleted file mode 100644 index d412c436..00000000 --- a/tiles/P5-4.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P5-4/tile.json b/tiles/P5-4/tile.json new file mode 100644 index 00000000..17e8a0ae --- /dev/null +++ b/tiles/P5-4/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P5-4", + "name": "P5-4", + "description": "" +} diff --git a/tiles/P5-4/tile.svg b/tiles/P5-4/tile.svg new file mode 100644 index 00000000..d412c436 --- /dev/null +++ b/tiles/P5-4/tile.svg @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/P6-6_11.svg b/tiles/P6-6_11.svg deleted file mode 100644 index 580f2324..00000000 --- a/tiles/P6-6_11.svg +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/P6-6_11/tile.json b/tiles/P6-6_11/tile.json new file mode 100644 index 00000000..0508dbc1 --- /dev/null +++ b/tiles/P6-6_11/tile.json @@ -0,0 +1,5 @@ +{ + "id": "P6-6_11", + "name": "P6-6_11", + "description": "" +} diff --git a/tiles/P6-6_11/tile.svg b/tiles/P6-6_11/tile.svg new file mode 100644 index 00000000..580f2324 --- /dev/null +++ b/tiles/P6-6_11/tile.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/diamond-square/tile.json b/tiles/diamond-square/tile.json new file mode 100644 index 00000000..79638133 --- /dev/null +++ b/tiles/diamond-square/tile.json @@ -0,0 +1,5 @@ +{ + "id": "diamond-square", + "name": "diamonds and squares", + "description": "" +} diff --git a/tiles/diamond-square/tile.svg b/tiles/diamond-square/tile.svg new file mode 100644 index 00000000..e6e70cbc --- /dev/null +++ b/tiles/diamond-square/tile.svg @@ -0,0 +1,128 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/tiles/diamond_square.svg b/tiles/diamond_square.svg deleted file mode 100644 index e6e70cbc..00000000 --- a/tiles/diamond_square.svg +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/tiles/hexagon.svg b/tiles/hexagon.svg deleted file mode 100644 index e5093ae7..00000000 --- a/tiles/hexagon.svg +++ /dev/null @@ -1,27 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/tiles/hexagon/tile.json b/tiles/hexagon/tile.json new file mode 100644 index 00000000..30728c29 --- /dev/null +++ b/tiles/hexagon/tile.json @@ -0,0 +1,5 @@ +{ + "id": "hexagon", + "name": "hexagonal lattice", + "description": "" +} diff --git a/tiles/hexagon/tile.svg b/tiles/hexagon/tile.svg new file mode 100644 index 00000000..e5093ae7 --- /dev/null +++ b/tiles/hexagon/tile.svg @@ -0,0 +1,27 @@ + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tiles/weird-one/tile.json b/tiles/weird-one/tile.json new file mode 100644 index 00000000..2445a7ec --- /dev/null +++ b/tiles/weird-one/tile.json @@ -0,0 +1,5 @@ +{ + "id": "weird-one", + "name": "weird one", + "description": "" +} diff --git a/tiles/weird-one/tile.svg b/tiles/weird-one/tile.svg new file mode 100644 index 00000000..768d3ebe --- /dev/null +++ b/tiles/weird-one/tile.svg @@ -0,0 +1,110 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/tiles/weird_one.svg b/tiles/weird_one.svg deleted file mode 100644 index 768d3ebe..00000000 --- a/tiles/weird_one.svg +++ /dev/null @@ -1,110 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - -- cgit v1.2.3 From 92dff9f359f19c57ce63046a85cbd40746e50a32 Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 20 Feb 2023 15:30:18 -0500 Subject: remove unused import --- lib/elements/fill_stitch.py | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/elements/fill_stitch.py b/lib/elements/fill_stitch.py index 9d86aa36..c6762ad1 100644 --- a/lib/elements/fill_stitch.py +++ b/lib/elements/fill_stitch.py @@ -5,7 +5,6 @@ import logging import math -import numpy as np import re import sys import traceback -- cgit v1.2.3